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.

171 lines
5.3 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. MAJORCOMP=lsa
  15. MINORCOMP=server
  16. TARGETPATH=obj
  17. TARGETTYPE=DYNLINK
  18. DLLDEF=..\lsasrv.def
  19. INCLUDES=..;..\..\inc;..\..\..\inc; \
  20. ..\..\idl; \
  21. ..\..\idl\$(O); \
  22. $(DS_GLOBAL_INC); \
  23. $(NTDS_INC); \
  24. $(SECURITY_INC); \
  25. $(BASE_INC_PATH); \
  26. $(COM_INC_PATH); \
  27. $(DS_INC_PATH); \
  28. $(DS_INC_PATH)\crypto; \
  29. $(DRIVERS_INC_PATH); \
  30. $(ENDUSER_INC_PATH); \
  31. $(WINDOWS_INC_PATH); \
  32. $(NET_INC_PATH);
  33. NTLEGO=1
  34. # Strict warning, can be used to detect uninitialized vars. Picks up random
  35. # stuff too
  36. COMPILER_WARNINGS=$(COMPILER_WARNINGS) -FI$(SECURITY_INC)\secwarn.h
  37. C_DEFINES=-DRPC_NO_WINDOWS_H -DUNICODE -DLSA_SERVER_COMPILED
  38. !IF "$(WIN64)" == "1"
  39. NO_SSPI_SIGNATURES=1
  40. !ENDIF
  41. !IF "$(NO_SSPI_SIGNATURES)" != ""
  42. LSA_IGNORE_SIGNATURE=1
  43. !ENDIF
  44. !IF "$(LSA_IGNORE_SIGNATURE)" != ""
  45. C_DEFINES=$(C_DEFINES) -DLSA_IGNORE_SIGNATURE
  46. !ENDIF
  47. SOURCES= \
  48. ..\bndcache.cxx \
  49. ..\credapi.cxx \
  50. ..\credmgr.cxx \
  51. ..\ctxtapi.cxx \
  52. ..\debug.cxx \
  53. ..\efssrv.cxx \
  54. ..\efsapi.cxx \
  55. ..\efsinit.cxx \
  56. ..\efscert.cxx \
  57. ..\efssrv.cxx \
  58. ..\encrypt.cxx \
  59. ..\klpc.cxx \
  60. ..\klpcstub.cxx \
  61. ..\lht.cxx \
  62. ..\lsawmi.c \
  63. ..\lsastr.c \
  64. ..\msvlayer.cxx \
  65. ..\negotiat.cxx \
  66. ..\negsupp.cxx \
  67. ..\neglsa.cxx \
  68. ..\param.cxx \
  69. ..\policy.cxx \
  70. ..\shmem.cxx \
  71. ..\samhooks.cxx \
  72. ..\scavenge.cxx \
  73. ..\sesmgr.cxx \
  74. ..\sht.cxx \
  75. ..\sphelp.cxx \
  76. ..\spinit.cxx \
  77. ..\spmgr.cxx \
  78. ..\sputil.cxx \
  79. ..\thdpool.cxx \
  80. ..\userkey.cxx \
  81. ..\util.cxx \
  82. ..\logons.cxx \
  83. ..\efsrpc_s_stub.c \
  84. ..\lsa_rev.rc \
  85. ..\lsarpc_s_stub.c \
  86. ..\snego.c \
  87. ..\spnego.c
  88. UMTYPE=windows
  89. UMRES=$(O)\lsa_rev.res
  90. UMLIBS=$(SDK_LIB_PATH)\lsasrv.lib \
  91. $(SDK_LIB_PATH)\rpcrt4.lib \
  92. $(SDK_LIB_PATH)\samlib.lib \
  93. $(SDK_LIB_PATH)\samsrv.lib \
  94. $(SDK_LIB_PATH)\ntdll.lib
  95. LINKLIBS= \
  96. ..\cfiles\$(O)\lsalib.lib \
  97. ..\dspolicy\$(O)\lpolicy.lib \
  98. $(SDK_LIB_PATH)\ntdsa.lib \
  99. $(SECURITY_LIB_PATH)\dsrolsrv.lib \
  100. $(SECURITY_LIB_PATH)\dpapisvc.lib
  101. TARGETLIBS= \
  102. ..\..\common\$(O)\lsacomm.lib \
  103. $(SECURITY_LIB_PATH)\dsysdbg.lib \
  104. $(SECURITY_LIB_PATH)\secmisc.lib \
  105. $(SDK_LIB_PATH)\rpcutil.lib \
  106. $(SDK_LIB_PATH)\rpcrt4.lib \
  107. $(SDK_LIB_PATH)\rpcndr.lib \
  108. $(SDK_LIB_PATH)\kernel32.lib \
  109. ..\..\security\dll\$(O)\secur32p.lib \
  110. $(SDK_LIB_PATH)\user32.lib \
  111. $(SDK_LIB_PATH)\advapip.lib \
  112. $(SDK_LIB_PATH)\samsrv.lib \
  113. $(SDK_LIB_PATH)\msasn1.lib \
  114. $(DS_GLOBAL_LIB_PATH)\nlrepl.lib \
  115. $(DS_LIB_PATH)\rsa32.lib \
  116. $(SDK_LIB_PATH)\ntdsa.lib \
  117. $(SDK_LIB_PATH)\netlib.lib \
  118. $(DS_LIB_PATH)\netapi32p.lib \
  119. $(SDK_LIB_PATH)\wldap32.lib \
  120. $(SDK_LIB_PATH)\dnsapi.lib \
  121. $(SDK_LIB_PATH)\samlib.lib \
  122. $(SDK_LIB_PATH)\ntdsetup.lib \
  123. $(SDK_LIB_PATH)\mpr.lib \
  124. $(SDK_LIB_PATH)\crypt32.lib \
  125. $(SDK_LIB_PATH)\cryptui.lib \
  126. $(SDK_LIB_PATH)\userenv.lib \
  127. $(SDK_LIB_PATH)\ntdsapi.lib \
  128. $(DS_LIB_PATH)\certclip.lib \
  129. $(SDK_LIB_PATH)\shlwapi.lib \
  130. $(DS_GLOBAL_LIB_PATH)\wxapicli.lib \
  131. $(DS_LIB_PATH)\alloca.lib \
  132. $(PROJECT_LIB_PATH)\pautoenr.lib
  133. #
  134. # This line makes the lsasrv.dll use crtdll.dll instead of libc.lib
  135. #
  136. USE_CRTDLL=1
  137. PRECOMPILED_INCLUDE=..\lsapch.hxx
  138. PRECOMPILED_OBJ=lsapch.obj
  139. PRECOMPILED_PCH=lsapch.pch
  140. DELAYLOAD=dnsapi.dll;crypt32.dll;wldap32.dll;ntdsetup.dll;cryptui.dll;userenv.dll;certcli.dll;ntdsa.dll;shlwapi.dll;pautoenr.dll