MAKEFILE
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:7k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #/*+=========================================================================
  2. #  File:       MAKEFILE
  3. #
  4. #  Summary:    Makefile for building the DCOMDRAW.EXE binary.  DCOMDRAW
  5. #              is a Win32 EXE that acts as a client of the DCDSERVE
  6. #              DLL server to create and manipulate a COPaper COM object.
  7. #
  8. #              DCOMDRAW specifically works with the DCDSERVE.DLL produced
  9. #              in the DCDSERVE lesson (in sibling directory DCDSERVE).
  10. #              This Makefile therefore depends on a prior build (and the
  11. #              resultant registration) of the DCDSERVE.DLL server.
  12. #              Similarly, DCOMDRAW requires the DCDMARSH marshaling
  13. #              server produced in the DCDMARSH sample (in sibling
  14. #              directory DCDMARSH).
  15. #
  16. #              This Makefile creates a subdirectory (TEMP) for the
  17. #              .OBJ and .RES files used during the build process.
  18. #
  19. #              For a comprehensive tutorial code tour of DCOMDRAW's
  20. #              contents and offerings see the tutorial DCOMDRAW.HTM
  21. #              file. For more specific technical details see the comments
  22. #              dispersed throughout the DCOMDRAW source code.
  23. #
  24. #              See also DCDSERVE.HTM (in the main tutorial directory)
  25. #              more details on the DCDSERVE server and how it works with
  26. #              for DCOMDRAW.EXE itself.
  27. #
  28. #              In general, to set up your system to build and test the
  29. #              Win32 code samples in this COM Tutorial series, see the
  30. #              global TUTORIAL.HTM file for details.  This MAKEFILE is
  31. #              Microsoft NMAKE compatible and the 'debug' build can be
  32. #              achieved by simply issuing the NMAKE command in the
  33. #              command prompt window.
  34. #
  35. #  Builds:     DCOMDRAW.EXE.
  36. #
  37. #  Origin:     8-23-97: atrent - Editor-inheritance from CONCLIEN code
  38. #              sample makefile. [Revised]
  39. #
  40. #--Usage:-------------------------------------------------------------------
  41. #  NMAKE Options
  42. #
  43. #  Use the table below to determine the additional options for NMAKE to
  44. #  generate various application debugging, profiling and performance tuning
  45. #  information.
  46. #
  47. #  Application Information Type         Invoke NMAKE
  48. #  ----------------------------         ------------
  49. #  For No Debugging Info                nmake nodebug=1
  50. #  For Working Set Tuner Info           nmake tune=1
  51. #  For Call Attributed Profiling Info   nmake profile=1
  52. #
  53. #  Note: The three options above are mutually exclusive (you may use only
  54. #        one to compile/link the application).
  55. #
  56. #  Note: creating the environment variables NODEBUG, TUNE, and PROFILE
  57. #        is an alternate method to setting these options via the nmake
  58. #        command line.
  59. #
  60. #  Additional NMAKE Options             Invoke NMAKE
  61. #  ----------------------------         ------------
  62. #  For No ANSI NULL Compliance          nmake no_ansi=1
  63. #    (ANSI NULL is defined as PVOID 0)
  64. #  To compile for Unicode               nmake unicode=1
  65. #    (Default is ANSI)
  66. #  To clean up temporary binaries       nmake clean
  67. #  To clean up all generated files      nmake cleanall
  68. #
  69. #---------------------------------------------------------------------------
  70. #  This file is part of the Microsoft COM Tutorial Code Samples.
  71. #
  72. #  Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  73. #
  74. #  This source code is intended only as a supplement to Microsoft
  75. #  Development Tools and/or on-line documentation.  See these other
  76. #  materials for detailed information regarding Microsoft code samples.
  77. #
  78. #  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  79. #  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  80. #  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  81. #  PARTICULAR PURPOSE.
  82. #=========================================================================+*/
  83. #  WIN32.MAK should be included at the front of every Win32 makefile.
  84. #
  85. #  Define APPVER = [ 3.50 | 3.51 | 4.0 ] prior to including win32.mak to get
  86. #  build time checking for version dependencies and to mark the executable
  87. #  with version information.
  88. #
  89. #  Define TARGETOS = [ WIN95 | WINNT | BOTH ] prior to including win32.mak
  90. #  to get some build time checking for platform dependencies.
  91. #
  92. APPVER=4.0
  93. TARGETOS=WINNT
  94. !include <win32.mak>
  95. # Assign the main program name macro.
  96. PGM=dcomdraw
  97. # Use a temporary sub-directory to store intermediate
  98. # binary files like *.obj, *.res, *.map, etc.
  99. TDIR = TEMP
  100. # The sibling ..INC and ..LIB directories are added to the front of
  101. # the INCLUDE and LIB macros to inform the compiler and linker of
  102. # these application-specific locations for include and lib files.
  103. INCLUDE=..inc;$(INCLUDE)
  104. LIB=..lib;$(LIB)
  105. LINK = $(link)
  106. # If UNICODE=1 is defined then define UNICODE during Compiles.
  107. # The default is to compile with ANSI for running under both
  108. # Win95 and WinNT.
  109. !IFDEF UNICODE
  110. LINKFLAGS = $(ldebug)
  111. CDBG=$(cdebug) -DUNICODE -D_UNICODE
  112. RCFLAGS = -DWIN32 -DRC_INCLUDE -DUNICODE
  113. !ELSE
  114. LINKFLAGS = $(ldebug)
  115. CDBG=$(cdebug)
  116. RCFLAGS = -DWIN32 -DRC_INCLUDE
  117. !ENDIF
  118. # If NODEBUG is not defined then define DEBUG during Compiles.
  119. # The default is to compile with debug symbols in the binaries.
  120. !IFNDEF NODEBUG
  121. CDBG = $(CDBG) -DDEBUG
  122. RCFLAGS = $(RCFLAGS) -DDEBUG
  123. !ENDIF
  124. # APPLIBS are libraries used by this application that are outside
  125. # of its indigenous file set and are needed during the final link.
  126. APPLIBS = apputil.lib shell32.lib
  127. # PGMOBJS is a macro that defines the object files for this application.
  128. PGMOBJS = $(TDIR)$(PGM).obj $(TDIR)guipaper.obj $(TDIR)sink.obj
  129. # The final target.
  130. all: tempdir output
  131. # Make the temporary work sub-directory.
  132. tempdir:
  133.   -mkdir $(TDIR)
  134. # The actual output products.
  135. output: $(PGM).exe
  136. # Compilation/Dependency rules for the main source files.
  137. $(TDIR)$(PGM).obj: $(PGM).cpp $(PGM).h guipaper.h
  138.   $(cc) $(cvars) $(cflags) $(CDBG) -Fo$@ $(PGM).cpp
  139. $(TDIR)guipaper.obj: guipaper.cpp guipaper.h $(PGM).h sink.h
  140.   $(cc) $(cvars) $(cflags) $(CDBG) -Fo$@ guipaper.cpp
  141. $(TDIR)sink.obj: sink.cpp sink.h guipaper.h
  142.   $(cc) $(cvars) $(cflags) $(CDBG) -Fo$@ sink.cpp
  143. # Compile the resources.
  144. $(TDIR)$(PGM).res: $(PGM).rc $(PGM).ico $(PGM).h
  145.   rc $(RCFLAGS) -r -fo$@ $(PGM).rc
  146. # Link the object and resource binaries into the final target binary.
  147. $(PGM).exe: $(PGMOBJS) $(TDIR)$(PGM).res
  148.   $(LINK) @<<
  149.     $(LINKFLAGS)
  150.     -out:$@
  151.     -map:$(TDIR)$*.map
  152.     $(PGMOBJS)
  153.     $(TDIR)$*.res
  154.     $(olelibs) $(APPLIBS)
  155. <<
  156. # Target to clean up temporary binaries.
  157. clean:
  158.   -del $(PGM).pdb
  159.   -deltree /y $(TDIR)
  160.   -rmdir /s /q $(TDIR)
  161. # Target to clean up all generated files.
  162. cleanall:
  163.   -del *.aps
  164.   -del *.bsc
  165.   -del *.dll
  166.   -del *.dsp
  167.   -del *.dsw
  168.   -del *.exe
  169.   -del *.exp
  170.   -del *.lib
  171.   -del *.mak
  172.   -del *.map
  173.   -del *.mdp
  174.   -del *.ncb
  175.   -del *.obj
  176.   -del *.opt
  177.   -del *.pch
  178.   -del *.pdb
  179.   -del *.plg
  180.   -del *.res
  181.   -del *.sbr
  182.   -del *.vcp
  183.   -del resource.h
  184.   -deltree /y $(TDIR)
  185.   -rmdir /s /q $(TDIR)
  186.   -deltree /y debug
  187.   -rmdir /s /q debug
  188.   -deltree /y release
  189.   -rmdir /s /q release