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
454 B

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