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

Windows编程

开发平台:

Visual C++

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