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.

112 lines
3.3 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. Bruce Mansfield (brucema) 01-Jun-1995
  12. !ENDIF
  13. #
  14. # The MAJORCOMP and MINORCOMP variables are defined
  15. # so that $(MAJORCOMP)$(MINORCOMP)filename can be used in
  16. # cross compiling to provide unique filenames in a flat namespace.
  17. #
  18. MAJORCOMP=cairole
  19. MINORCOMP=dbgexts
  20. #
  21. # The TARGETNAME variable is defined by the developer. It is the name of
  22. # the target (component) that is being built by this makefile. It
  23. # should NOT include any path or file extension information.
  24. #
  25. TARGETNAME=oleexts
  26. DLLBASE=0x7a000000
  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=obj
  35. # Pick one of the following and delete the others
  36. TARGETTYPE=DYNLINK
  37. DLLDEF= ..\ole.def
  38. #
  39. # The TARGETLIBS specifies additional libraries to link with you target
  40. # image. Each library path specification should contain an asterisk (*)
  41. # where the machine specific subdirectory name should go.
  42. #
  43. UMTYPE=console
  44. USE_MSVCRT=1
  45. LINKLIBS= $(SDK_LIB_PATH)\kernel32.lib \
  46. $(SDK_LIB_PATH)\user32.lib \
  47. $(SDK_LIB_PATH)\gdi32.lib \
  48. $(SDK_LIB_PATH)\advapi32.lib \
  49. $(SDK_LIB_PATH)\crtdll.lib \
  50. $(SDK_LIB_PATH)\uuid.lib
  51. #
  52. # The INCLUDES variable specifies any include paths that are specific to
  53. # this source directory. Separate multiple directory paths with single
  54. # semicolons. Relative path specifications are okay.
  55. #
  56. INCLUDES=..\;..\..\common\daytona;..\..\ih;..\..\com\inc;..\..\com\objact;..\..\dcom\idl\daytona;..\..\com\rot;..\..\com\dcomrem;..\..\..\dcomidl\obj
  57. #
  58. # The SOURCES variable is defined by the developer. It is a list of all the
  59. # source files for this component. Each source file should be on a separate
  60. # line using the line continuation character. This will minimize merge
  61. # conflicts if two developers adding source files to the same component.
  62. #
  63. SOURCES= \
  64. ..\oleexts.cxx \
  65. ..\ddllcach.cxx \
  66. ..\drot.cxx \
  67. ..\dvtbl.cxx \
  68. ..\derror.cxx \
  69. ..\dfileext.cxx \
  70. ..\dfilepat.cxx \
  71. ..\dpsclsid.cxx \
  72. ..\dstdid.cxx \
  73. ..\dchannel.cxx \
  74. ..\dinfolvl.cxx \
  75. ..\dmoniker.cxx \
  76. ..\dtreatas.cxx \
  77. ..\dclsinfo.cxx \
  78. ..\dclscach.cxx \
  79. ..\util.cxx \
  80. ..\doxid.cxx \
  81. ..\dipid.cxx \
  82. ..\ole.rc
  83. C_DEFINES= -DNT -DWINNT \
  84. $(C_DEFINES)