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.

111 lines
2.3 KiB

  1. !IF 0
  2. Copyright (c) 2001 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. CliffV 11-April-2001
  12. !ENDIF
  13. MAJORCOMP=authz
  14. MINORCOMP=azroles
  15. TARGETNAME=$(MINORCOMP)
  16. TARGETPATH=obj
  17. TARGETTYPE=DYNLINK
  18. DLLDEF= $(O)\$(TARGETNAME).def
  19. DLLENTRY= _DllMainCRTStartup
  20. C_DEFINES= $(C_DEFINES) -DUNICODE
  21. C_DEFINES= $(C_DEFINES) -D_AZROLESAPI_
  22. USE_STATIC_ATL=1
  23. USE_SYSTEM_MIDL=1
  24. IDL_TYPE=OLE
  25. SOURCES= \
  26. $(TARGETNAME).idl \
  27. $(TARGETNAME).rc \
  28. $(TARGETNAME).cxx \
  29. azdisp.cxx \
  30. stdafx_stub.cxx \
  31. adminmgr.cxx \
  32. app.cxx \
  33. context.cxx \
  34. genobj.cxx \
  35. group.cxx \
  36. junction.cxx \
  37. role.cxx \
  38. sample.cxx \
  39. scope.cxx \
  40. sid.cxx \
  41. task.cxx \
  42. op.cxx \
  43. persist.cxx \
  44. util.cxx \
  45. INCLUDES= \
  46. $(O) \
  47. .; \
  48. gzork= \
  49. $(SECURITY_INC); \
  50. $(NTDS_INC); \
  51. $(BASE_INC_PATH); \
  52. $(COM_INC_PATH); \
  53. $(NET_INC_PATH);
  54. # Strict warning, can be used to detect uninitialized vars. Picks up random
  55. # stuff too
  56. COMPILER_WARNINGS=$(COMPILER_WARNINGS) -FI$(SECURITY_INC)\secwarn.h
  57. MSC_WARNING_LEVEL=/W4
  58. PRECOMPILED_INCLUDE=pch.hxx
  59. PRECOMPILED_OBJ=pch.obj
  60. PRECOMPILED_PCH=pch.pch
  61. # Use C++ Exception Handling
  62. # USE_NATIVE_EH=1
  63. USE_MSVCRT= 1
  64. TARGETLIBS= \
  65. $(SDK_LIB_PATH)\user32.lib \
  66. $(SDK_LIB_PATH)\kernel32.lib \
  67. $(SDK_LIB_PATH)\ole32.lib \
  68. $(SDK_LIB_PATH)\oleaut32.lib \
  69. $(SDK_LIB_PATH)\uuid.lib \
  70. $(SDK_LIB_PATH)\advapi32.lib \
  71. $(SDK_LIB_PATH)\authz.lib \
  72. $(DS_LIB_PATH)\alloca.lib \
  73. # DELAYLOAD=samlib.dll;ntdsapi.dll;netapi32.dll;wldap32.dll
  74. # DLOAD_ERROR_HANDLER=kernel32
  75. NTTARGETFILES= \
  76. stdafx_stub.cxx \
  77. $(O)\azrolesp.lib \
  78. PASS1_PUBLISH= \
  79. {$(O)\$(TARGETNAME).lib=$(SDK_LIB_PATH)\$(TARGETNAME).lib} \
  80. {$(O)\$(TARGETNAME).h=$(SDK_INC_PATH)\$(TARGETNAME).h} \
  81. {$(O)\azrolesp.lib=$(PROJECT_LIB_PATH)\azrolesp.lib}