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.

43 lines
632 B

  1. !include ..\..\win95upg.mk
  2. # component
  3. MINORCOMP=strtabs
  4. # target
  5. TARGETNAME=strtabs
  6. TARGETPATH=obj
  7. TARGETTYPE=PROGRAM
  8. # x86-specific sources
  9. SOURCES=
  10. I386_SOURCES=\
  11. strtabs.c \
  12. strtabs.rc
  13. # compiler options
  14. USE_MSVCRT=1
  15. # link libraries
  16. TARGETLIBS=\
  17. $(WIN95UPG_BIN)\migutil.lib \
  18. $(SDK_LIB_PATH)\setupapi.lib \
  19. $(SDK_LIB_PATH)\kernel32.lib \
  20. $(SDK_LIB_PATH)\user32.lib \
  21. $(SDK_LIB_PATH)\gdi32.lib \
  22. $(SDK_LIB_PATH)\advapi32.lib \
  23. $(BASE_LIB_PATH)\sputilsa.lib \
  24. # app settings
  25. UMTYPE=console
  26. !if 1
  27. UMENTRY=wmain
  28. C_DEFINES=$(C_DEFINES) -DUNICODE
  29. !else
  30. UMENTRY=main
  31. !endif