Leaked source code of windows server 2003
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.

99 lines
2.7 KiB

  1. ############################################################################
  2. #
  3. # Copyright (C) 1999, Microsoft Corporation.
  4. #
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. #!include ..\..\..\..\common\makefile.cmn
  9. #SOURCES_USED=..\..\..\..\common\makefile.cmn
  10. TARGETNAME=sceprov
  11. TARGETPATH=obj
  12. TARGETTYPE=DYNLINK
  13. # The TARGETLIBS macro specifies additional libraries to link against your target
  14. # image. Each library path specification should contain an asterisk (*)
  15. # where the machine-specific subdirectory name should go.
  16. TARGETLIBS= \
  17. $(SDK_LIB_PATH)\kernel32.lib \
  18. $(SDK_LIB_PATH)\oleaut32.lib \
  19. $(SDK_LIB_PATH)\ole32.lib \
  20. $(SDK_LIB_PATH)\uuid.lib \
  21. $(SDK_LIB_PATH)\user32.lib \
  22. $(SDK_LIB_PATH)\Userenv.lib \
  23. $(SDK_LIB_PATH)\advapi32.lib \
  24. $(SDK_LIB_PATH)\wbemuuid.lib \
  25. $(SDK_LIB_PATH)\vccomsup.lib \
  26. $(SDK_LIB_PATH)\scecli.lib
  27. USE_STL=1
  28. USE_ATL=1
  29. ATL_VER=30
  30. USE_MSVCRT=1
  31. MIDL_FLAGS=-DMIDL_PASS
  32. MIDL_UUIDDIR=$(O)
  33. # The INCLUDES variable specifies any include paths that are specific to
  34. # this source directory. Separate multiple paths with single
  35. # semicolons. Relative path specifications are okay.
  36. INCLUDES=$(INCLUDES);
  37. # The developer defines the SOURCES macro. It contains a list of all the
  38. # source files for this component. Specify each source file on a separate
  39. # line using the line-continuation character. This minimizes merge
  40. # conflicts if two developers are adding source files to the same component.
  41. # genlex.cpp \
  42. # opathlex.cpp \
  43. # objpath.cpp \
  44. SOURCES= \
  45. scecore.idl \
  46. sceprov.rc \
  47. maindll.cpp \
  48. sceprov.cpp \
  49. requestobject.cpp \
  50. genericclass.cpp \
  51. template.cpp \
  52. database.cpp \
  53. password.cpp \
  54. lockout.cpp \
  55. kerberos.cpp \
  56. audit.cpp \
  57. regvalue.cpp \
  58. option.cpp \
  59. eventlog.cpp \
  60. rights.cpp \
  61. object.cpp \
  62. group.cpp \
  63. service.cpp \
  64. operation.cpp \
  65. attachment.cpp \
  66. support.cpp \
  67. logrec.cpp \
  68. extbase.cpp \
  69. persistmgr.cpp \
  70. sceparser.cpp \
  71. sequence.cpp \
  72. tranx.cpp \
  73. compkey.cpp
  74. MISCFILES=SceProv.mof \
  75. sceprov_{38a3b1c2-606f-4c95-80bf-42b524c3eaa3}.sld
  76. # Next, specify options for the compiler using C_DEFINES.
  77. C_DEFINES=$(C_DEFINES) /D_WIN32_WINNT=0x0400 /DUNICODE /D_EXEC_QUERY_SUPPORT /DBUILDING_DLL /D_WINDLL /D__WINNT_BUILD__
  78. USER_C_FLAGS=/Ob2 /EHa
  79. USE_MFCVER=42
  80. USE_MFC=1
  81. DLLDEF=$(O)\sceprov.def
  82. USE_NATIVE_EH=1
  83. PASS0_HEADERDIR=$(O)
  84. #PASS0_PUBLISH= \
  85. # {$(O)\scecore.h=$(DS_INC_PATH)\scecore.h} \
  86. # {$(O)\scecore_i.c=$(DS_INC_PATH)\scecore_i.c}