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.

100 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-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=rpctrans
  20. #
  21. # The TARGETPATH and TARGETTYPE variables 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. TARGETTYPE=LIBRARY
  27. #
  28. # The INCLUDES variable specifies any include paths that are specific to
  29. # this source directory. Separate multiple directory paths with single
  30. # semicolons. Relative path specifications are okay.
  31. #
  32. INCLUDES=..;..\..\..\mtrt;..\..\..\rtifs\$(O);..\..\..\charconv;$(BASE_INC_PATH);$(NET_INC_PATH)
  33. #
  34. # The SOURCES variable is defined by the developer. It is a list of all the
  35. # source files for this component. Each source file should be on a separate
  36. # line using the line continuation character. This will minimize merge
  37. # conflicts if two developers adding source files to the same component.
  38. #
  39. MSC_WARNING_LEVEL=/WX
  40. PRECOMPILED_INCLUDE=..\precomp.hxx
  41. PRECOMPILED_CXX=1
  42. SOURCES= $(SOURCES) \
  43. ..\afd.cxx \
  44. ..\complete.cxx \
  45. ..\Cookie.cxx \
  46. ..\loader.cxx \
  47. ..\cotrans.cxx \
  48. ..\dgtrans.cxx \
  49. ..\HndlCach.cxx \
  50. ..\HTTP2.cxx \
  51. ..\HttpRTS.cxx \
  52. ..\muteximp.cxx \
  53. ..\nptrans.cxx \
  54. ..\wsload.cxx \
  55. ..\wstrans.cxx \
  56. ..\tower.cxx \
  57. ..\httptran.cxx \
  58. ..\httpreg.cxx \
  59. ..\regexp.cxx \
  60. ..\util.cxx \
  61. ..\Protocol.cxx \
  62. ..\WHttpImp.cxx
  63. i386_SOURCES= \
  64. ..\ipxname.cxx
  65. C_DEFINES= $(C_DEFINES) -DWIN32RPC -D_RPCRT4_ -D_RPCTRANS_
  66. UMTYPE=console
  67. #
  68. # Defining the NTTARGETFILES variable causes MAKEFILE.DEF to attempt to
  69. # include .\makefile.inc immediately after it specifies the top
  70. # level targets (all, clean and loc) and their dependencies. MAKEFILE.DEF
  71. # also expands the value of the NTTARGETFILES variable at the end of the
  72. # list of dependencies for the all target. Useful for specifying additional
  73. # targets and dependencies that don't fit the general case covered by
  74. # MAKEFILE.DEF
  75. #