You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
946 B
36 lines
946 B
#-------------------------------
|
|
MAJORCOMP=ntos
|
|
MINORCOMP=csq
|
|
|
|
TARGETNAME=CSQ
|
|
TARGETTYPE=LIBRARY
|
|
TARGETPATH=obj
|
|
|
|
INCLUDES=\
|
|
..;\
|
|
..\..;\
|
|
..\..\..\inc
|
|
|
|
C_DEFINES=$(C_DEFINES) -DCSQLIB=1
|
|
|
|
SOURCES=..\cancelapi.c
|
|
|
|
PASS0_PUBLISH = {csq.w=$(DDK_INC_PATH)\legacy\csq.h} \
|
|
{csq.w=$(DDK_INC_PATH)\csq.h}
|
|
|
|
PASS1_PUBLISH = {$(O)\csq.lib=$(DDK_LIB_PATH)\legacy\csq.lib} \
|
|
{$(O)\csq.lib=$(DDK_LIB_PATH)\csq.lib}
|
|
|
|
#
|
|
#
|
|
# We must disable buffer overflow checks here. The reason is that we are
|
|
# producing a static library that is published in the Windows DDK and this LIB
|
|
# must not only be available to VC6 users, it must be available to users of
|
|
# non-Microsoft compilers.
|
|
#
|
|
# (In SP1, the *presence* of this flag enables /GS stuff)
|
|
# (In .NET, the flag must be present and set to zero to turn it off!)
|
|
#
|
|
# This is .NET, so turn off /GS by defining the flag to zero.
|
|
BUFFER_OVERFLOW_CHECKS=0
|
|
|