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.

60 lines
837 B

  1. !include ..\..\win95upg.mk
  2. # component
  3. MINORCOMP=extract
  4. # target
  5. TARGETPATH=obj
  6. TARGETTYPE=PROGRAM
  7. # x86-specific sources
  8. I386_SOURCES=\
  9. extract.c \
  10. extract.rc \
  11. # link libraries
  12. #!include $(WIN95UPG_ROOT)\common\libs.mk
  13. !include $(WIN95UPG_ROOT)\tools\sdklibs.mk
  14. TARGETLIBS=$(TARGETLIBS) \
  15. $(WIN95UPG_BIN)\migutil.lib \
  16. $(WIN95UPG_BIN)\fileenum.lib \
  17. $(WIN95UPG_BIN)\win95reg.lib \
  18. $(WIN95UPG_BIN)\memdb.lib \
  19. $(WIN95UPG_BIN)\snapshot.lib \
  20. $(WIN95UPG_BIN)\regw32d.lib \
  21. $(BASE_LIB_PATH)\sputilsa.lib \
  22. $(BASE_LIB_PATH)\sputilsu.lib \
  23. !ifdef UNICODE_TOOL
  24. C_DEFINES=-DUNICODE
  25. UMTYPE=console
  26. UMENTRY=wmain
  27. TARGETNAME=icontoolu
  28. !else
  29. C_DEFINES=
  30. UMTYPE=console
  31. UMENTRY=main
  32. TARGETNAME=icontool
  33. !endif