Leaked source code of windows server 2003
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.

46 lines
495 B

  1. !include ..\..\win95upg.mk
  2. # component
  3. MINORCOMP=killfile
  4. # target
  5. TARGETPATH=obj
  6. TARGETTYPE=PROGRAM
  7. # x86-specific sources
  8. I386_SOURCES=\
  9. killfile.c \
  10. # link libraries
  11. !include $(WIN95UPG_ROOT)\common\libs.mk
  12. !include $(WIN95UPG_ROOT)\tools\sdklibs.mk
  13. !ifdef UNICODE_TOOL
  14. C_DEFINES=-DUNICODE
  15. UMTYPE=console
  16. UMENTRY=wmain
  17. TARGETNAME=killfileu
  18. !else
  19. C_DEFINES=
  20. UMTYPE=console
  21. UMENTRY=main
  22. TARGETNAME=killfile
  23. !endif