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.

119 lines
2.3 KiB

  1. !IF 0
  2. Copyright (c) 1989-1999 Microsoft Corporation
  3. Module Name:
  4. sources.
  5. Abstract:
  6. This file specifies the target component being built and the list of
  7. sources files needed to build that component. Also specifies optional
  8. compiler switches and libraries that are unique for the component being
  9. built.
  10. Author:
  11. Jim Geist (JimGe) 29-Aug-97
  12. NOTE: Commented description of this file is in \nt\oak\bin\sources.tpl
  13. !ENDIF
  14. !include ..\..\dmusic.inc
  15. MAJORCOMP=windows
  16. MINORCOMP=directx
  17. TARGETNAME=dmscript
  18. !IF !$(FREEBUILD) && defined( DIRECTX_REDIST )
  19. TARGETNAME=dmscripd
  20. !ENDIF
  21. TARGETPATH=obj
  22. TARGETTYPE=DYNLINK
  23. UMTYPE=windows
  24. DLLDEF=..\dll.def
  25. DLLENTRY=_DllMainCRTStartup
  26. USE_MAPSYM=1
  27. USE_CRTDLL=1
  28. USE_STL=1
  29. !if "$(NTDEBUG)" == "ntsd" || "$(NTDEBUG)" == "cvp" || "$(NTDEBUG)" == "sym"
  30. !if "$(BuildMode)" == "internal"
  31. C_DEFINES = $(C_DEFINES) -DDEBUG=1
  32. !else
  33. C_DEFINES = $(C_DEFINES) -DRDEBUG=1
  34. !endif
  35. !endif
  36. C_DEFINES= $(C_DEFINES) -D_WIN32 -DINC_OLE2 -DxDMS_NEVER_USE_OLEAUT
  37. !if defined(DMUSIC_INTERNAL)
  38. C_DEFINES= $(C_DEFINES) -DDMUSIC_INTERNAL
  39. !endif
  40. #
  41. # 04/10/2000 - allows for addition of BoundsChecker, etc
  42. # libs specified in the OS environment
  43. #
  44. TARGETLIBS=$(TARGETLIBS) \
  45. $(BASEDIR)\public\sdk\lib\*\kernel32.lib \
  46. $(BASEDIR)\public\sdk\lib\*\advapi32.lib \
  47. $(BASEDIR)\public\sdk\lib\*\uuid.lib \
  48. $(BASEDIR)\public\sdk\lib\*\ole32.lib
  49. !if 0
  50. $(BASEDIR)\public\sdk\lib\*\winmm.lib \
  51. $(BASEDIR)\public\sdk\lib\*\user32.lib
  52. !endif
  53. INCLUDES=$(INCLUDES); \
  54. $(DXROOT)\inc; \
  55. ..\..\shared; \
  56. ..\..\includes
  57. SOURCES=\
  58. ..\activescript.cpp \
  59. ..\autaudiopath.cpp \
  60. ..\autaudiopathconfig.cpp \
  61. ..\autconstants.cpp \
  62. ..\authelper.cpp \
  63. ..\autperformance.cpp \
  64. ..\autsegment.cpp \
  65. ..\autsegmentstate.cpp \
  66. ..\autsong.cpp \
  67. ..\containerdisp.cpp \
  68. ..\dll.cpp \
  69. ..\dll.rc \
  70. ..\dmstrm.cpp \
  71. ..\debug.cpp \
  72. ..\dmscript.cpp \
  73. ..\engdisp.cpp \
  74. ..\engerror.cpp \
  75. ..\engexec.cpp \
  76. ..\engexpr.cpp \
  77. ..\enginc.cpp \
  78. ..\engine.cpp \
  79. ..\englex.cpp \
  80. ..\englookup.cpp \
  81. ..\engparse.cpp \
  82. ..\globaldisp.cpp \
  83. ..\guids.cpp \
  84. ..\oleaut.cpp \
  85. ..\oledll.cpp \
  86. ..\packexception.cpp \
  87. ..\scriptthread.cpp \
  88. ..\smartref.cpp \
  89. ..\sourcetext.cpp \
  90. ..\track.cpp \
  91. ..\trackhelp.cpp \
  92. ..\trackshared.cpp \
  93. ..\unkhelp.cpp \
  94. ..\workthread.cpp