Source code of Windows XP (NT5)
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.

35 lines
873 B

  1. MAJORCOMP=ntos
  2. MINORCOMP=csq
  3. TARGETNAME=CSQ
  4. TARGETTYPE=LIBRARY
  5. TARGETPATH=obj
  6. INCLUDES=\
  7. ..;\
  8. ..\..;\
  9. ..\..\..\inc
  10. C_DEFINES=$(C_DEFINES) -DCSQLIB=1
  11. SOURCES=..\cancelapi.c
  12. PASS0_PUBLISH = {csq.w=$(DDK_INC_PATH)\legacy\csq.h} \
  13. {csq.w=$(DDK_INC_PATH)\csq.h}
  14. PASS1_PUBLISH = {$(O)\csq.lib=$(DDK_LIB_PATH)\legacy\csq.lib} \
  15. {$(O)\csq.lib=$(DDK_LIB_PATH)\csq.lib}
  16. #
  17. #
  18. # We must disable buffer overflow checks here. The reason is that we are
  19. # producing a static library that is published in the Windows DDK and this LIB
  20. # must not only be available to VC6 users, it must be available to users of
  21. # non-Microsoft compilers.
  22. #
  23. # (In SP1, the *presence* of this flag enables /GS stuff)
  24. # (In .NET, the flag must be present and set to zero to turn it off!)
  25. #
  26. # This is SP1, so turn off /GS by not defining the flag.
  27. #BUFFER_OVERFLOW_CHECKS=0