Windows NT 4.0 source code leak
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.

137 lines
4.2 KiB

4 years ago
  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=codegen
  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=..\lib
  26. TARGETTYPE=LIBRARY
  27. 386_STDCALL=0
  28. MSC_WARNING_LEVEL=/WX /W3
  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=.;..;..\front;..\include;..\analysis;..\expr;..\support;
  35. #
  36. # The SOURCES variable is defined by the developer. It is a list of all the
  37. # source files for this component. Each source file should be on a separate
  38. # line using the line continuation character. This will minimize merge
  39. # conflicts if two developers adding source files to the same component.
  40. #
  41. BLDCRT=1
  42. PRECOMPILED_INCLUDE=becls.hxx
  43. SOURCES= \
  44. pickle.cxx \
  45. paddict.cxx \
  46. auxgen.cxx \
  47. stgen.cxx \
  48. pungent.cxx \
  49. typegen.cxx \
  50. ptrgen.cxx \
  51. arraygen.cxx \
  52. bindcls.cxx \
  53. sdesc.cxx \
  54. treg.cxx \
  55. dtable.cxx \
  56. output.cxx \
  57. output1.cxx \
  58. procgen.cxx \
  59. ilxlat.cxx \
  60. ilbase.cxx \
  61. ilcore.cxx \
  62. btgen.cxx \
  63. misccls.cxx \
  64. filecls.cxx \
  65. ccb.cxx \
  66. resmgr.cxx \
  67. resdict.cxx \
  68. cgmain.cxx \
  69. cgdump.cxx \
  70. cgcls.cxx \
  71. ndrcls.cxx \
  72. stcls.cxx \
  73. proccls.cxx \
  74. frmtstr.cxx \
  75. btndr.cxx \
  76. ptrndr.cxx \
  77. arrayndr.cxx \
  78. stndr.cxx \
  79. ilreg.cxx \
  80. ilctxt.cxx \
  81. procndr.cxx \
  82. unionndr.cxx \
  83. uniongen.cxx \
  84. bindndr.cxx \
  85. cgobject.cxx \
  86. iid.cxx \
  87. header.cxx \
  88. frmtreg.cxx \
  89. comcls.cxx \
  90. comhdr.cxx \
  91. comsvr.cxx \
  92. comtst.cxx \
  93. typendr.cxx \
  94. pipendr.cxx \
  95. szbuffer.cxx
  96. # Set this to remove crt asserts from the retail build.
  97. !if "$(NTDEBUG)"=="retail" || "$(NTDEBUG)"==""
  98. C_DEFINES= $(C_DEFINES) -DNDEBUG
  99. !endif
  100. UMTYPE=console
  101. #
  102. # Defining the NTTARGETFILES variable causes MAKEFILE.DEF to attempt to
  103. # include .\makefile.inc immediately after it specifies the top
  104. # level targets (all, clean and loc) and their dependencies. MAKEFILE.DEF
  105. # also expands the value of the NTTARGETFILES variable at the end of the
  106. # list of dependencies for the all target. Useful for specifying additional
  107. # targets and dependencies that don't fit the general case covered by
  108. # MAKEFILE.DEF
  109. #