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.

104 lines
2.5 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=XTCB
  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=xtcbpkg
  27. TARGETPATH=obj
  28. TARGETTYPE=DYNLINK
  29. DLLDEF=xtcbpkg.def
  30. DLLENTRY=_DllMainCRTStartup
  31. DLLBASE=0x2000000
  32. #
  33. # The TARGETLIBS specifies additional libraries to link with you target
  34. # image. Each library path specification should contain an asterisk (*)
  35. # where the machine specific subdirectory name should go.
  36. #
  37. TARGETLIBS= \
  38. $(SECURITY_LIB_PATH)\dsysdbg.lib \
  39. $(DS_LIB_PATH)\rsa32.lib \
  40. $(DS_LIB_PATH)\secur32p.lib \
  41. $(SDK_LIB_PATH)\cryptdll.lib \
  42. $(SDK_LIB_PATH)\kernel32.lib \
  43. $(SDK_LIB_PATH)\advapi32.lib \
  44. $(SDK_LIB_PATH)\rpcrt4.lib \
  45. $(SDK_LIB_PATH)\ntdll.lib
  46. #
  47. # The INCLUDES variable specifies any include paths that are specific to
  48. # this source directory. Separate multiple directory paths with single
  49. # semicolons. Relative path specifications are okay.
  50. #
  51. INCLUDES=.;..\..\inc;$(DS_INC_PATH)\crypto;
  52. #
  53. # The SOURCES variable is defined by the developer. It is a list of all the
  54. # source files for this component. Each source file should be on a separate
  55. # line using the line continuation character. This will minimize merge
  56. # conflicts if two developers adding source files to the same component.
  57. #
  58. SOURCES=xtcbpkg.c \
  59. credapi.c \
  60. ctxtapi.c \
  61. usermode.c \
  62. creds.c \
  63. context.c \
  64. util.c \
  65. server.c \
  66. mgroup.c \
  67. userctxt.c \
  68. protocol.c \
  69. debug.c \
  70. res.rc
  71. #
  72. # Next specify options for the compiler.
  73. #
  74. C_DEFINES=-DRPC_NO_WINDOWS_H -DSECURITY_WIN32 -DUNICODE
  75. USE_CRTDLL=1
  76. NO_NTDLL=1