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.

102 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. PASS0_SOURCEDIR=$(O)
  34. PASS0_HEADERDIR=$(O)
  35. MIDL_TLBDIR=$(O)
  36. # The INCLUDES variable specifies any include paths that are specific to
  37. # this source directory. Separate multiple paths with single
  38. # semicolons. Relative path specifications are okay.
  39. INCLUDES=$(INCLUDES);
  40. # The developer defines the SOURCES macro. It contains a list of all the
  41. # source files for this component. Specify each source file on a separate
  42. # line using the line-continuation character. This minimizes merge
  43. # conflicts if two developers are adding source files to the same component.
  44. # genlex.cpp \
  45. # opathlex.cpp \
  46. # objpath.cpp \
  47. SOURCES= \
  48. scecore.idl \
  49. sceprov.rc \
  50. maindll.cpp \
  51. sceprov.cpp \
  52. requestobject.cpp \
  53. genericclass.cpp \
  54. template.cpp \
  55. database.cpp \
  56. password.cpp \
  57. lockout.cpp \
  58. kerberos.cpp \
  59. audit.cpp \
  60. regvalue.cpp \
  61. option.cpp \
  62. eventlog.cpp \
  63. rights.cpp \
  64. object.cpp \
  65. group.cpp \
  66. service.cpp \
  67. operation.cpp \
  68. attachment.cpp \
  69. support.cpp \
  70. logrec.cpp \
  71. extbase.cpp \
  72. persistmgr.cpp \
  73. sceparser.cpp \
  74. sequence.cpp \
  75. tranx.cpp \
  76. compkey.cpp
  77. MISCFILES=SceProv.mof \
  78. sceprov_{38a3b1c2-606f-4c95-80bf-42b524c3eaa3}.sld
  79. # Next, specify options for the compiler using C_DEFINES.
  80. C_DEFINES=$(C_DEFINES) /D_WIN32_WINNT=0x0400 /DUNICODE /D_EXEC_QUERY_SUPPORT /DBUILDING_DLL /D_WINDLL /D__WINNT_BUILD__
  81. USER_C_FLAGS=/Ob2 /EHa
  82. USE_MFCVER=42
  83. USE_MFC=1
  84. DLLDEF=$(O)\sceprov.def
  85. USE_NATIVE_EH=1
  86. PASS0_HEADERDIR=$(O)
  87. #PASS0_PUBLISH= \
  88. # {$(O)\scecore.h=$(DS_INC_PATH)\scecore.h} \
  89. # {$(O)\scecore_i.c=$(DS_INC_PATH)\scecore_i.c}