69 lines
1.7 KiB
Plaintext
69 lines
1.7 KiB
Plaintext
|
!IF 0
|
||
|
|
||
|
Copyright (c) 1989 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
sources.
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
This file specifies the target component being built and the list of
|
||
|
sources files needed to build that component. Also specifies optional
|
||
|
compiler switches and libraries that are unique for the component being
|
||
|
built.
|
||
|
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Steve Wood (stevewo) 12-Apr-1990
|
||
|
|
||
|
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
TARGET_BOTH = 1
|
||
|
NOT_UNICODE = 1
|
||
|
WIN32_WINNT_VERSION=0x0400
|
||
|
WIN32_WIN95_VERSION=0x0400
|
||
|
WIN32_IE_VERSION=0x0400
|
||
|
SUBSYSTEM_VERSION=4.00
|
||
|
USE_NOLIBS = 1
|
||
|
|
||
|
UMTYPE = windows
|
||
|
|
||
|
INCLUDES = \
|
||
|
.\ \
|
||
|
..\inc; \
|
||
|
..\common\itstg; \
|
||
|
$(SDK_INC_PATH); \
|
||
|
$(SDK_INC_PATH)\win64; \
|
||
|
$(SDK_INC_PATH)\win64\crt; \
|
||
|
$(SDK_INC_PATH)\win64\atl; \
|
||
|
|
||
|
TARGETNAME = orkin
|
||
|
TARGETPATH = ..\slib\win32
|
||
|
TARGETTYPE = LIBRARY
|
||
|
|
||
|
!ifdef USE_ICECAP
|
||
|
C_DEFINES=$(C_DEFINES) -DNASHVILLE -DNTBUILD -DITWRAP -D_NT -D_32BIT -DPROFILING
|
||
|
!else
|
||
|
C_DEFINES=$(C_DEFINES) -DNASHVILLE -DNTBUILD -DITWRAP -D_NT -D_32BIT
|
||
|
!endif
|
||
|
|
||
|
TARGETLIBS = $(LIBRARY_PATH)\gdi32.lib \
|
||
|
$(LIBRARY_PATH)\kernel32.lib \
|
||
|
$(LIBRARY_PATH)\user32.lib \
|
||
|
$(LIBRARY_PATH)\advapi32.lib \
|
||
|
$(LIBRARY_PATH)\shlwapi.lib \
|
||
|
$(LIBRARY_PATH)\comctl32.lib \
|
||
|
$(LIBRARY_PATH)\shell32.lib \
|
||
|
$(LIBRARY_PATH)\libcmt.lib \
|
||
|
$(LIBRARY_PATH)\ole32.lib \
|
||
|
$(LIBRARY_PATH)\oleaut32.lib \
|
||
|
$(LIBRARY_PATH)\uuid.lib \
|
||
|
|
||
|
SOURCES= assert.c \
|
||
|
bugout.c \
|
||
|
memallo.cpp \
|