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.

160 lines
4.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. #
  15. # The MAJORCOMP and MINORCOMP variables are defined
  16. # so that $(MAJORCOMP)$(MINORCOMP)filename can be used in
  17. # cross compiling to provide unique filenames in a flat namespace.
  18. #
  19. MAJORCOMP=SECURITY
  20. MINORCOMP=KERBEROS
  21. #
  22. # The TARGETNAME variable is defined by the developer. It is the name of
  23. # the target (component) that is being built by this makefile. It
  24. # should NOT include any path or file extension information.
  25. #
  26. TARGETNAME=KERBEROS
  27. #
  28. # The TARGETPATH and TARGETTYPE variables are defined by the developer.
  29. # The first specifies where the target is to be build. The second specifies
  30. # the type of target (either PROGRAM, DYNLINK, LIBRARY, UMAPPL_NOLIB or
  31. # BOOTPGM). UMAPPL_NOLIB is used when you're only building user-mode
  32. # apps and don't need to build a library.
  33. #
  34. TARGETPATH=obj
  35. # This is needed, otherwise binaries get binplaced to the normal place.
  36. ALT_PROJECT_TARGET=win95
  37. # Pick one of the following and delete the others
  38. TARGETTYPE=DYNLINK
  39. DLLDEF=kerberos.def
  40. DLLENTRY=_DllMainCRTStartup
  41. #
  42. # The TARGETLIBS specifies additional libraries to link with you target
  43. # image. Each library path specification should contain an asterisk (*)
  44. # where the machine specific subdirectory name should go.
  45. #
  46. TARGETLIBS= \
  47. $(SDK_LIB_PATH)\logonsrv.lib \
  48. $(SECURITY_LIB_PATH)\cryptdll_chicago.lib \
  49. $(SDK_LIB_PATH)\msasn1.lib \
  50. $(SDK_LIB_PATH)\wsock32.lib \
  51. $(SDK_LIB_PATH)\kernel32.lib \
  52. $(SDK_LIB_PATH)\user32.lib \
  53. $(SDK_LIB_PATH)\advapi32.lib \
  54. $(SDK_LIB_PATH)\ntdll.lib
  55. #
  56. # The INCLUDES variable specifies any include paths that are specific to
  57. # this source directory. Separate multiple directory paths with single
  58. # semicolons. Relative path specifications are okay.
  59. #
  60. INCLUDES=..;..\..;..\..\inc;\
  61. $(SECURITY_INC);\
  62. $(ENDUSER_INC_PATH);\
  63. $(NET_INC_PATH);\
  64. $(DS_INC_PATH)\crypto;
  65. #
  66. # The SOURCES variable is defined by the developer. It is a list of all the
  67. # source files for this component. Each source file should be on a separate
  68. # line using the line continuation character. This will minimize merge
  69. # conflicts if two developers adding source files to the same component.
  70. #
  71. #
  72. # Next specify one or more user mode test programs and their type
  73. # UMTEST is used for optional test programs. UMAPPL is used for
  74. # programs that always get built when the directory is built.
  75. #
  76. UMTYPE=console
  77. # Strict warning, can be used to detect uninitialized vars. Picks up random
  78. # stuff too
  79. COMPILER_WARNINGS=$(COMPILER_WARNINGS) -FI$(SECURITY_INC)\secwarn.h
  80. LINKER_FLAGS=$(LINKER_FLAGS) -map
  81. SOURCES=
  82. I386_SOURCES= \
  83. kerbstub.cxx \
  84. ..\bndcache.cxx \
  85. ..\credapi.cxx \
  86. ..\credmgr.cxx \
  87. ..\ctxtapi.cxx \
  88. ..\ctxtmgr.cxx \
  89. ..\gssutil.cxx \
  90. ..\kerberos.cxx \
  91. ..\kerblist.cxx \
  92. ..\kerbtick.cxx \
  93. ..\kerbutil.cxx \
  94. ..\logonapi.cxx \
  95. ..\logonses.cxx \
  96. ..\mitutil.cxx \
  97. ..\rpcutil.cxx \
  98. ..\timesync.cxx \
  99. ..\tktcache.cxx \
  100. ..\userapi.cxx \
  101. ..\userlist.cxx \
  102. ..\timesync.cxx \
  103. ..\kerbpass.cxx \
  104. ntcalls.cxx \
  105. cpsock.cxx \
  106. cpnames.cxx \
  107. cptick.cxx \
  108. cpkeygn.c \
  109. cpcrypt.c \
  110. cppaswd.c \
  111. cpkrb5.c \
  112. ..\res.rc
  113. #
  114. # Next specify options for the compiler.
  115. #
  116. C_DEFINES= $(C_DEFINES) -DCHICAGO_PRODUCT -DWIN32_CHICAGO -DSECURITY_WIN32
  117. # USE_CL860_LARGE_MODEL=
  118. USE_MSVCRT=1
  119. NO_NTDLL=1