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.

181 lines
5.1 KiB

  1. !IF 0
  2. Copyright (c) 1989 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. Steve Wood (stevewo) 12-Apr-1990
  12. NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
  13. !ENDIF
  14. !INCLUDE ..\..\sources.inc
  15. #
  16. # The MAJORCOMP and MINORCOMP variables are defined
  17. # so that $(MAJORCOMP)$(MINORCOMP)filename can be used in
  18. # cross compiling to provide unique filenames in a flat namespace.
  19. #
  20. MAJORCOMP=SECURITY
  21. MINORCOMP=KERBEROS
  22. #
  23. # The TARGETNAME variable is defined by the developer. It is the name of
  24. # the target (component) that is being built by this makefile. It
  25. # should NOT include any path or file extension information.
  26. #
  27. TARGETNAME=KERBEROS
  28. #
  29. # The TARGETPATH and TARGETTYPE variables are defined by the developer.
  30. # The first specifies where the target is to be build. The second specifies
  31. # the type of target (either PROGRAM, DYNLINK, LIBRARY, UMAPPL_NOLIB or
  32. # BOOTPGM). UMAPPL_NOLIB is used when you're only building user-mode
  33. # apps and don't need to build a library.
  34. #
  35. TARGETPATH=obj
  36. # Pick one of the following and delete the others
  37. TARGETTYPE=DYNLINK
  38. DLLDEF=..\kerberos.def
  39. DLLENTRY=_DllMainCRTStartup
  40. #
  41. # The TARGETLIBS specifies additional libraries to link with you target
  42. # image. Each library path specification should contain an asterisk (*)
  43. # where the machine specific subdirectory name should go.
  44. #
  45. TARGETLIBS= \
  46. $(SECURITY_LIB_PATH)\dsysdbg.lib \
  47. $(SECURITY_LIB_PATH)\lsaitf.lib \
  48. ..\..\common2\$(O)\kerbcomm.lib \
  49. $(SECURITY_LIB_PATH)\secmisc.lib \
  50. $(DS_LIB_PATH)\w32time.lib \
  51. $(SDK_LIB_PATH)\cryptdll.lib \
  52. $(DS_GLOBAL_LIB_PATH)\nlrepl.lib \
  53. $(SDK_LIB_PATH)\msasn1.lib \
  54. $(SDK_LIB_PATH)\netlib.lib \
  55. $(SDK_LIB_PATH)\lsasrv.lib \
  56. $(SDK_LIB_PATH)\samsrv.lib \
  57. $(SDK_LIB_PATH)\ws2_32.lib \
  58. $(SDK_LIB_PATH)\kernel32.lib \
  59. $(SDK_LIB_PATH)\advapi32.lib \
  60. $(DS_LIB_PATH)\secur32p.lib \
  61. $(SDK_LIB_PATH)\dnsapi.lib \
  62. $(DS_LIB_PATH)\netapi32p.lib \
  63. $(SDK_LIB_PATH)\ntdsapi.lib \
  64. $(SDK_LIB_PATH)\sclogon.lib \
  65. $(SECURITY_LIB_PATH)\sclogon2.lib \
  66. $(SECURITY_LIB_PATH)\sclgnrpc.lib \
  67. $(SDK_LIB_PATH)\user32.lib \
  68. $(SDK_LIB_PATH)\crypt32.lib \
  69. $(SDK_LIB_PATH)\winscard.lib \
  70. $(SDK_LIB_PATH)\rpcrt4.lib \
  71. $(DS_LIB_PATH)\alloca.lib
  72. DELAYLOAD=ws2_32.dll;netapi32.dll;crypt32.dll;rpcrt4.dll;lsasrv.dll;samsrv.dll;dnsapi.dll
  73. DLOAD_ERROR_HANDLER=kernel32
  74. #
  75. # The INCLUDES variable specifies any include paths that are specific to
  76. # this source directory. Separate multiple directory paths with single
  77. # semicolons. Relative path specifications are okay.
  78. #
  79. INCLUDES=..;..\..\idl;\
  80. ..\..\idl\$(O);\
  81. ..\..\inc;\
  82. $(SECURITY_INC);\
  83. $(SECURITY_INC)\$(O); \
  84. $(ENDUSER_INC_PATH);\
  85. $(NET_INC_PATH);\
  86. $(PROJECT_ROOT)\netapi\inc; \
  87. $(DS_INC_PATH)\crypto; \
  88. $(BASE_INC_PATH);
  89. # Strict warning, can be used to detect uninitialized vars. Picks up random
  90. # stuff too
  91. COMPILER_WARNINGS=$(COMPILER_WARNINGS) -FI$(SECURITY_INC)\secwarn.h
  92. MSC_WARNING_LEVEL= /W4 /WX
  93. #
  94. # The SOURCES variable is defined by the developer. It is a list of all the
  95. # source files for this component. Each source file should be on a separate
  96. # line using the line continuation character. This will minimize merge
  97. # conflicts if two developers adding source files to the same component.
  98. #
  99. SOURCES=..\bndcache.cxx \
  100. ..\credapi.cxx \
  101. ..\credman.cxx \
  102. ..\credmgr.cxx \
  103. ..\ctxtapi.cxx \
  104. ..\ctxtmgr.cxx \
  105. ..\gssutil.cxx \
  106. ..\kerberos.cxx \
  107. ..\krbevent.cxx \
  108. ..\kerblist.cxx \
  109. ..\kerbpass.cxx \
  110. ..\kerbtick.cxx \
  111. ..\kerbtrace.cxx \
  112. ..\kerbutil.cxx \
  113. ..\kerbwow.cxx \
  114. ..\krbaudit.cxx \
  115. ..\krbtoken.cxx \
  116. ..\logonapi.cxx \
  117. ..\logonses.cxx \
  118. ..\miscapi.cxx \
  119. ..\mitutil.cxx \
  120. ..\pkauth.cxx \
  121. ..\rpcutil.cxx \
  122. ..\timesync.cxx \
  123. ..\tktcache.cxx \
  124. ..\tktlogon.cxx \
  125. ..\userapi.cxx \
  126. ..\userlist.cxx \
  127. ..\spncache.cxx \
  128. ..\kerbs4u.cxx \
  129. ..\kerberos.mof \
  130. ..\res.rc
  131. #
  132. # Next specify options for the compiler.
  133. #
  134. C_DEFINES=$(C_DEFINES) -DRPC_NO_WINDOWS_H -DSUPPORT_OLD_PAC -DRETAIL_LOG_SUPPORT
  135. USE_MSVCRT=1
  136. NO_SSPI_SIGNATURES=1
  137. !IF "$(NO_SSPI_SIGNATURES)" == ""
  138. BINPLACE_FLAGS=-o Unsigned
  139. !ENDIF
  140. PRECOMPILED_INCLUDE=..\kerb.hxx
  141. PRECOMPILED_PCH=kerb.pch
  142. PRECOMPILED_OBJ=kerb.obj
  143. NTTARGETFILE0= $(O)\kerbevt.h