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.

106 lines
3.0 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-1989
  12. Edward Reus (edwardr) 14-Jun-1997 Version for RpcProxy.Dll
  13. Revision History:
  14. !ENDIF
  15. #
  16. # The TARGETNAME variable is defined by the developer. It is the name of
  17. # the target (component) that is being built by this makefile. It
  18. # should NOT include any path or file extension information.
  19. #
  20. TARGETNAME=RpcProxy
  21. #
  22. # The TARGETPATH and TARGETTYPE varialbes are defined by the developer.
  23. # The first specifies where the target is to be build. The second specifies
  24. # the type of target (either PROGRAM, DYNLINK or LIBRARY)
  25. #
  26. TARGETPATH=obj
  27. TARGETTYPE=DYNLINK
  28. PASS1_PUBLISH={$(O)\$(TARGETNAME).lib=$(SDK_LIB_PATH)\$(TARGETNAME).lib}
  29. TARGETLIBS= $(SDK_LIB_PATH)\rpcrt4.lib \
  30. $(SDK_LIB_PATH)\ole32.lib \
  31. $(SDK_LIB_PATH)\kernel32.lib \
  32. $(SDK_LIB_PATH)\wsock32.lib \
  33. $(SDK_LIB_PATH)\user32.lib \
  34. $(SDK_LIB_PATH)\advapi32.lib \
  35. $(SDK_LIB_PATH)\msvcrt.lib \
  36. $(SDK_LIB_PATH)\oleaut32.lib \
  37. $(SDK_LIB_PATH)\ActiveDS.lib
  38. #
  39. # The INCLUDES variable specifies any include paths that are specific to
  40. # this source directory. Separate multiple directory paths with single
  41. # semicolons. Relative path specifications are okay.
  42. #
  43. INCLUDES=..;..\..\..\mtrt
  44. MSC_WARNING_LEVEL=/WX
  45. #
  46. # The SOURCES variable is defined by the developer. It is a list of all the
  47. # source files for this component. Each source file should be on a separate
  48. # line using the line continuation character. This will minimize merge
  49. # conflicts if two developers adding source files to the same component.
  50. #
  51. SOURCES= ..\PEventLog.mc \
  52. ..\filter.c \
  53. ..\RpcIsapi.c \
  54. ..\server.c \
  55. ..\httpreg.c \
  56. ..\regexp.c \
  57. ..\memory.c \
  58. ..\ecblist.c \
  59. ..\olist.c \
  60. ..\registry.cpp \
  61. ..\RpcProxy.rc
  62. !ifdef DOSWIN32RPC
  63. RPCENV=-DDOSWIN32RPC -DWIN32RPC
  64. !else
  65. RPCENV=-DNTENV -DWIN32RPC -DNTWIN32RPC
  66. !endif
  67. C_DEFINES=$(RPCENV)
  68. USE_MSVCRT=1
  69. BUFFER_OVERFLOW_CHECKS=1
  70. DLLENTRY=DllMain
  71. UMTYPE=console
  72. UMRES=obj\*\RpcProxy.res
  73. #NTPROFILEINPUT=yes
  74. #
  75. # Defining the NTTARGETFILES variable causes MAKEFILE.DEF to attempt to
  76. # include .\makefile.inc immediately after it specifies the top
  77. # level targets (all, clean and loc) and their dependencies. MAKEFILE.DEF
  78. # also expands the value of the NTTARGETFILES variable at the end of the
  79. # list of dependencies for the all target. Useful for specifying additional
  80. # targets and dependencies that don't fit the general case covered by
  81. # MAKEFILE.DEF
  82. #