39 lines
606 B
Plaintext
39 lines
606 B
Plaintext
|
|
||
|
TARGETNAME=sptlib
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=LIBRARY
|
||
|
|
||
|
#
|
||
|
# kernel32 gives us malloc, free, etc.
|
||
|
#
|
||
|
TARGETLIBS=\
|
||
|
$(SDK_LIB_PATH)\kernel32.lib
|
||
|
|
||
|
#
|
||
|
# we include files from the DDK, SDK, and the sdktools private include path
|
||
|
#
|
||
|
INCLUDES=\
|
||
|
$(DDK_INC_PATH);\
|
||
|
$(SDK_INC_PATH);\
|
||
|
$(SDKTOOLS_INC_PATH)
|
||
|
|
||
|
#
|
||
|
# USE_NTDLL offloads a lot of the basic work from this dll.
|
||
|
#
|
||
|
USE_NTDLL=1
|
||
|
|
||
|
|
||
|
PASS0_PUBLISH=\
|
||
|
{sptlib.w=$(SDKTOOLS_INC_PATH)\sptlib.h}\
|
||
|
|
||
|
PASS1_PUBLISH=\
|
||
|
{$(O)\sptlib.lib=$(SDKTOOLS_LIB_PATH)\sptlib.lib}\
|
||
|
|
||
|
SOURCES=sptlib.c \
|
||
|
sptlib.rc
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|