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.

90 lines
2.4 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=wdigest
  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=dgstkrnl
  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=$(SECURITY_LIB_DEST)
  35. # Pick one of the following and delete the others
  36. TARGETTYPE=LIBRARY
  37. #
  38. # The INCLUDES variable specifies any include paths that are specific to
  39. # this source directory. Separate multiple directory paths with single
  40. # semicolons. Relative path specifications are okay.
  41. #
  42. INCLUDES=.;..;..\..\inc;
  43. INCLUDES=.;..;\
  44. $(SECURITY_INC);\
  45. $(DS_INC_PATH);$(DS_INC_PATH)\crypto;\
  46. $(BASE_INC_PATH);
  47. # Strict warning, can be used to detect uninitialized vars. Picks up random
  48. # stuff too
  49. MSC_WARNING_LEVEL= /W4 /WX
  50. #
  51. # The SOURCES variable is defined by the developer. It is a list of all the
  52. # source files for this component. Each source file should be on a separate
  53. # line using the line continuation character. This will minimize merge
  54. # conflicts if two developers adding source files to the same component.
  55. #
  56. SOURCES=krnlapi.cxx \
  57. ..\util.cxx \
  58. ..\parser.cxx \
  59. ..\auth.cxx \
  60. #
  61. # Next specify options for the compiler.
  62. #
  63. C_DEFINES=-DRPC_NO_WINDOWS_H -DSECURITY_WIN32 -DSECURITY_KERNEL