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.

115 lines
3.6 KiB

  1. #
  2. # The MAJORCOMP and MINORCOMP variables are defined
  3. # so that $(MAJORCOMP)$(MINORCOMP)filename can be used in
  4. # cross compiling to provide unique filenames in a flat namespace.
  5. #
  6. # MAJORCOMP=
  7. # MINORCOMP=
  8. #
  9. # The developer defines the TARGETNAME variable. It is the name of
  10. # the target (component) that is being built by this makefile.
  11. # It should not include any path or filename extension.
  12. #
  13. TARGETNAME=McsADsClassProp
  14. #
  15. # The developer defines the TARGETPATH and TARGETTYPE variables.
  16. # The first variable specifies where the target will be built. The second specifies
  17. # the type of target (either PROGRAM, DYNLINK, LIBRARY, UMAPPL_NOLIB or
  18. # BOOTPGM). Use UMAPPL_NOLIB when you are only building user-mode
  19. # programs and do not need to build a library.
  20. #
  21. TARGETPATH=obj
  22. # Select one of the following, and delete the others:
  23. # TARGETTYPE=PROGRAM
  24. TARGETTYPE=DYNLINK
  25. # TARGETTYPE=LIBRARY
  26. # TARGETTYPE=UMAPPL_NOLIB
  27. # TARGETTYPE=BOOTPGM
  28. #
  29. # The TARGETLIBS macro specifies additional libraries to link against your target
  30. # image. Each library path specification should contain an asterisk (*)
  31. # where the machine-specific subdirectory name should go.
  32. #
  33. DLLDEF=ADsProp.def
  34. DLLENTRY=_DllMainCRTStartup
  35. ATL_VER=30
  36. USE_STATIC_ATL=1
  37. USE_IOSTREAM=1
  38. USE_VCCOM=1
  39. TARGETLIBS=$(BASEDIR)\public\sdk\lib\*\netapi32.lib \
  40. $(BASEDIR)\public\sdk\lib\*\activeds.lib \
  41. $(BASEDIR)\public\sdk\lib\*\adsiid.lib \
  42. $(BASEDIR)\public\sdk\lib\*\kernel32.lib \
  43. $(BASEDIR)\public\sdk\lib\*\user32.lib \
  44. $(BASEDIR)\public\sdk\lib\*\advapi32.lib \
  45. $(BASEDIR)\public\sdk\lib\*\ole32.lib \
  46. $(BASEDIR)\public\sdk\lib\*\oleaut32.lib \
  47. $(BASEDIR)\public\sdk\lib\*\uuid.lib \
  48. $(BASEDIR)\public\sdk\lib\*\gdi32.lib \
  49. $(BASEDIR)\public\sdk\lib\*\winspool.lib \
  50. $(BASEDIR)\public\sdk\lib\*\comdlg32.lib \
  51. $(BASEDIR)\public\sdk\lib\*\shell32.lib \
  52. #
  53. # The INCLUDES variable specifies any include paths that are specific to
  54. # this source directory. Separate multiple paths with single
  55. # semicolons. Relative path specifications are okay.
  56. #
  57. # INCLUDES=
  58. #
  59. # The developer defines the SOURCES macro. It contains a list of all the
  60. # source files for this component. Specify each source file on a separate
  61. # line using the line-continuation character. This minimizes merge
  62. # conflicts if two developers are adding source files to the same component.
  63. #
  64. SOURCES=\
  65. ADsProp.cpp \
  66. ADsProp.idl \
  67. ADsProp.rc \
  68. Common.cpp \
  69. McsDbgU.cpp \
  70. McsDebug.cpp \
  71. ObjProp.cpp \
  72. StdAfx.cpp \
  73. TSync.cpp \
  74. # i386_SOURCES=i386\source1.asm
  75. # ALPHA_SOURCES=alpha\source1.s
  76. # MIPS_SOURCES=mips\source1.s
  77. # PPC_SOURCES=ppc\source1.s
  78. #
  79. # Next, specify options for the compiler using C_DEFINES.
  80. #
  81. C_DEFINES=/D WIN32 /D _WINDOWS /D _USRDLL /D _UNICODE /D UNICODE
  82. #
  83. # Next, specify one or more user-mode test programs and their type.
  84. # Use UMTEST for optional test programs. Use UMAPPL for
  85. # programs that are always built when the directory is built. See also
  86. # UMTYPE, UMBASE, and UMLIBS.
  87. #
  88. # UMTYPE=nt
  89. # UMTEST=bunny*baz
  90. # UMAPPL=bunny*baz
  91. # UMBASE=0x1000000
  92. # UMLIBS=obj\*\bunny.lib
  93. #
  94. # Defining either (or both) the variables NTTARGETFILE0 and/or NTTARGETFILES
  95. # causes makefile.def to include .\makefile.inc immediately after it
  96. # specifies the top level targets (all, clean and loc) and their dependencies.
  97. # The makefile.def file expands NTTARGETFILE0 as the first dependent for the
  98. # "all" target and NTTARGETFILES as the last dependent for the "all" target.
  99. # This is useful for specifying additional targets and dependencies that do not fit the
  100. # general case covered by makefile.def.
  101. #
  102. # NTTARGETFILE0=
  103. # NTTARGETFILES=
  104. # For more information about the macros in this file, see Macro Definitions.