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.

82 lines
1.9 KiB

  1. PROJDIR=..\..
  2. !include $(PROJDIR)\makefile.inc
  3. TARGETNAME=upnpui
  4. TARGETTYPE=DYNLINK
  5. TARGETPATH=obj
  6. DLLENTRY=_DllMainCRTStartup
  7. TARGETLIBS=\
  8. $(PROJDIR)\common\updebug\$(O)\updebug.lib \
  9. $(PROJDIR)\upnp\api\$(O)\upnpapi.lib \
  10. $(PROJDIR)\upnpui\common\$(O)\upscmn.lib \
  11. $(SDK_LIB_PATH)\advapi32.lib \
  12. $(SDK_LIB_PATH)\comctl32.lib \
  13. $(SDK_LIB_PATH)\kernl32p.lib \
  14. $(SDK_LIB_PATH)\netapi32.lib \
  15. $(SDK_LIB_PATH)\ole32.lib \
  16. $(SDK_LIB_PATH)\oleaut32.lib \
  17. $(SDK_LIB_PATH)\shell32.lib \
  18. $(SHELL_LIB_PATH)\shell32p.lib \
  19. $(SDK_LIB_PATH)\user32.lib \
  20. $(SDK_LIB_PATH)\uuid.lib \
  21. $(SDK_LIB_PATH)\wininet.lib \
  22. $(SDK_LIB_PATH)\shlwapi.lib
  23. SYNCHRONIZE_DRAIN=1
  24. LINKLIBS= \
  25. $(PROJDIR)\common\upbase\$(O)\upbase.lib \
  26. DELAYLOAD=\
  27. wininet.dll
  28. # Need to add error handler stubs!!!
  29. DLOAD_ERROR_HANDLER=kernel32
  30. INCLUDES=\
  31. $(SHELL_INC_PATH); \
  32. $(PROJDIR)\upnpui\inc; \
  33. $(PROJDIR)\upnpui\idl\$(O); \
  34. $(PROJDIR)\inc
  35. C_DEFINES=$(C_DEFINES) -D_MERGE_PROXYSTUB
  36. SOURCES=\
  37. cmdtable.cpp \
  38. dllmain.cpp \
  39. foldreg.cpp \
  40. icomtarg.cpp \
  41. icomtargf.cpp \
  42. icontextm.cpp \
  43. idelegate.cpp \
  44. ienumidl.cpp \
  45. iextract.cpp \
  46. implinc.cpp \
  47. iolewind.cpp \
  48. ipersist.cpp \
  49. ipersistf.cpp \
  50. ipersistf2.cpp \
  51. iqinfo.cpp \
  52. ishellei.cpp \
  53. ishellf.cpp \
  54. ishellf2.cpp \
  55. oncommand.cpp \
  56. openfold.cpp \
  57. pidlutil.cpp \
  58. shutil.cpp \
  59. tdevices.cpp \
  60. tfind.cpp \
  61. tmain.cpp \
  62. updpidl.cpp \
  63. upnpfold.cpp \
  64. upnpfold.rc
  65. !IF DEFINED(DBG)
  66. !IF "$(DBG)" == "1"
  67. SOURCES=$(SOURCES)\
  68. oncommand_dbg.cpp
  69. !ENDIF
  70. !ENDIF