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.

97 lines
2.2 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. Revision History:
  13. !ENDIF
  14. #
  15. # The TARGETNAME variable is defined by the developer. It is the name of
  16. # the target (component) that is being built by this makefile. It
  17. # should NOT include any path or file extension information.
  18. #
  19. TARGETNAME=RpcNdr
  20. #
  21. # The TARGETPATH and TARGETTYPE varialbes are defined by the developer.
  22. # The first specifies where the target is to be build. The second specifies
  23. # the type of target (either PROGRAM, DYNLINK or LIBRARY)
  24. #
  25. # TARGETPATH=obj
  26. TARGETPATH=obj
  27. PASS1_PUBLISH={$(O)\$(TARGETNAME).lib=$(SDK_LIB_PATH)\$(TARGETNAME).lib}
  28. TARGETTYPE=LIBRARY
  29. #
  30. # The INCLUDES variable specifies any include paths that are specific to
  31. # this source directory. Separate multiple directory paths with single
  32. # semicolons. Relative path specifications are okay.
  33. #
  34. INCLUDES=.;..\runtime\mtrt
  35. NTPROFILEINPUT=yes
  36. MSC_WARNING_LEVEL=/W3 /WX
  37. #
  38. # The SOURCES variable is defined by the developer. It is a list of all the
  39. # source files for this component. Each source file should be on a separate
  40. # line using the line continuation character. This will minimize merge
  41. # conflicts if two developers adding source files to the same component.
  42. #
  43. SOURCES= \
  44. ndrmem.cxx \
  45. # ndrtest.c
  46. !ifdef DOSWIN32RPC
  47. RPCENV=-DDOSWIN32RPC -DWIN32RPC
  48. !else
  49. RPCENV=-DNTENV
  50. !endif
  51. C_DEFINES=$(RPCENV) -D_RPCRT4_
  52. #
  53. # Defining the NTTARGETFILES variable causes MAKEFILE.DEF to attempt to
  54. # include .\makefile.inc immediately after it specifies the top
  55. # level targets (all, clean and loc) and their dependencies. MAKEFILE.DEF
  56. # also expands the value of the NTTARGETFILES variable at the end of the
  57. # list of dependencies for the all target. Useful for specifying additional
  58. # targets and dependencies that don't fit the general case covered by
  59. # MAKEFILE.DEF
  60. #
  61. NTTARGETFILES=linklist.cxx
  62. UMTYPE=console
  63. UMTEST=ndrtest
  64. UMLIBS= \
  65. $(SDK_LIB_PATH)\rpcrt4.lib