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

Windows编程

开发平台:

Visual C++

  1. #/*+=========================================================================
  2. #  File:       MAKEFILE
  3. #
  4. #  Summary:    Makefile for building the PERSERVE.DLL executable.
  5. #              PERSERVE is a COM Component In-process Server DLL providing
  6. #              a persistent COPageList component. The persistence method
  7. #              used is by implementation of the IPersistStream interface.
  8. #
  9. #              PERSERVE is meant to work in conjunction with the
  10. #              PERCLIEN.EXE client application produced in the
  11. #              PERCLIEN lesson.
  12. #
  13. #              This Makefile creates a subdirectory (TEMP) for the
  14. #              .OBJ and .RES files used during the build process.  It also
  15. #              automatically registers the newly built DLL server
  16. #              as a COM server in the system Registry.  Since the build of
  17. #              this makefile does this registration you must build the
  18. #              REGISTER.EXE utility first (in sibling directory REGISTER).
  19. #
  20. #              For a comprehensive tutorial code tour of PERSERVE's
  21. #              contents and offerings see the tutorial PERSERVE.HTM
  22. #              file.  For more specific technical details see the comments
  23. #              dispersed throughout the PERSERVE source code.
  24. #
  25. #              See also PERCLIEN.HTM (in the main tutorial directory)
  26. #              for more details on the PERCLIEN client application and how
  27. #              it works with PERSERVE.DLL.
  28. #
  29. #              In general, to set up your system to build and test the
  30. #              Win32 code samples in this COM Tutorial series, see the
  31. #              global TUTORIAL.HTM file for details.  This MAKEFILE is
  32. #              Microsoft NMAKE compatible and the 'debug' build can be
  33. #              achieved by simply issuing the NMAKE command in a
  34. #              command prompt window.
  35. #
  36. #  Builds:     PERSERVE.DLL, PERSERVE.LIB
  37. #
  38. #  Origin:     6-10-96: atrent - Editor-inheritance from CONSERVE makefile.
  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. #  To register server                   nmake register
  69. #  To unregister server                 nmake unregister
  70. #
  71. #---------------------------------------------------------------------------
  72. #  This file is part of the Microsoft COM Tutorial Code Samples.
  73. #
  74. #  Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  75. #
  76. #  This source code is intended only as a supplement to Microsoft
  77. #  Development Tools and/or on-line documentation.  See these other
  78. #  materials for detailed information regarding Microsoft code samples.
  79. #
  80. #  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  81. #  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  82. #  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  83. #  PARTICULAR PURPOSE.
  84. #=========================================================================+*/
  85. #  WIN32.MAK should be included at the front of every Win32 makefile.
  86. #
  87. #  Define APPVER = [ 3.50 | 3.51 | 4.0 ] prior to including win32.mak to get
  88. #  build time checking for version dependencies and to mark the executable
  89. #  with version information.
  90. #
  91. #  Define TARGETOS = [ WIN95 | WINNT | BOTH ] prior to including win32.mak
  92. #  to get some build time checking for platform dependencies.
  93. #
  94. APPVER=4.0
  95. TARGETOS=BOTH
  96. !include <win32.mak>
  97. # Assign the main program name macros.
  98. DLL = perserve
  99. # Use a temporary sub-directory to store intermediate
  100. # binary files like *.obj, *.res, *.map, etc.
  101. TDIR = TEMP
  102. # Assign destination and consumer sibling directories.
  103. IDIR = ..inc
  104. LDIR = ..lib
  105. REGEXE = ..registerregister.exe
  106. # The sibling ..INC and ..LIB directories are added to the front of
  107. # the INCLUDE and LIB macros to inform the compiler and linker of
  108. # these application-specific locations for include and lib files.
  109. INCLUDE=$(IDIR);$(INCLUDE)
  110. LIB=$(LDIR);$(LIB)
  111. LINK = $(link)
  112. # If UNICODE=1 is defined then define UNICODE during Compiles.
  113. # The default is to compile with ANSI for running under both
  114. # Win95 and WinNT.
  115. !IFDEF UNICODE
  116. LINKFLAGS = $(ldebug)
  117. CDBG=$(cdebug) -DUNICODE -D_UNICODE
  118. RCFLAGS = -DWIN32 -DRC_INCLUDE -DUNICODE
  119. !ELSE
  120. LINKFLAGS = $(ldebug)
  121. CDBG=$(cdebug)
  122. RCFLAGS = -DWIN32 -DRC_INCLUDE
  123. !ENDIF
  124. # If NODEBUG is not defined then define DEBUG during Compiles.
  125. # The default is to compile with debug symbols in the binaries.
  126. !IFNDEF NODEBUG
  127. CDBG = $(CDBG) -DDEBUG
  128. RCFLAGS = $(RCFLAGS) -DDEBUG
  129. !ENDIF
  130. # APPLIBS are libraries used by this application that are outside
  131. # of its indigenous file set and are needed during the final link.
  132. APPLIBS = apputil.lib shell32.lib
  133. # DLLOBJS is a macro that defines the object files for the DLL.
  134. DLLOBJS = $(TDIR)$(DLL).obj $(TDIR)server.obj $(TDIR)factory.obj 
  135.   $(TDIR)connect.obj $(TDIR)pagelist.obj
  136. # The final target.
  137. all: input tempdir output
  138. # Check if prior builds were done.
  139. input:
  140.   @IF NOT EXIST $(REGEXE) echo !!!!!! You must build REGISTER first !!!!!!
  141. # Make the temporary work sub-directory.
  142. tempdir:
  143.   -mkdir $(TDIR)
  144. # The actual output products.
  145. # Register the server after it's DLL is built.
  146. output: $(DLL).dll
  147.   if exist $(DLL).DLL if exist $(REGEXE) $(REGEXE) $(DLL).dll
  148. # Compilation/Dependency rules for the .DLL source files.
  149. #
  150. $(TDIR)$(DLL).obj: $(DLL).cpp $(DLL).h server.h
  151.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ $(DLL).cpp
  152. $(TDIR)server.obj: server.cpp server.h $(DLL).h
  153.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ server.cpp
  154. $(TDIR)factory.obj: factory.cpp factory.h server.h $(DLL).h
  155.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ factory.cpp
  156. $(TDIR)connect.obj: connect.cpp connect.h server.h $(DLL).h
  157.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ connect.cpp
  158. $(TDIR)pagelist.obj: pagelist.cpp pagelist.h server.h $(DLL).h
  159.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ pagelist.cpp
  160. # Compile the DLL resources.
  161. $(TDIR)$(DLL).res: $(DLL).rc $(DLL).ico server.h
  162.   rc $(RCFLAGS) -r -fo$@ $(DLL).rc
  163. # Link the object and resource binaries into the target DLL binary.
  164. # Build the import LIB file so apps can link to and use this DLL.
  165. $(DLL).dll: $(DLLOBJS) $(TDIR)$(DLL).res
  166.     $(LINK)  @<<
  167.     $(LINKFLAGS) $(dlllflags)
  168.     -out:$@
  169.     -base:0x1C000000
  170.     -def:$*.def
  171.     -implib:$*.lib
  172.     -map:$(TDIR)$*.map
  173.     $(DLLOBJS)
  174.     $(TDIR)$*.res
  175.     $(olelibsdll) $(APPLIBS)
  176. <<
  177. # Target to register the server
  178. register:
  179.   if exist $(DLL).DLL if exist $(REGEXE) $(REGEXE) $(DLL).dll
  180. # Target to unregister the server
  181. unregister:
  182.   if exist $(DLL).DLL if exist $(REGEXE) $(REGEXE) /u $(DLL).dll
  183. # Target to clean up binaries.
  184. clean:
  185.   -del $(DLL).exp
  186.   -del $(DLL).lib
  187.   -deltree /y $(TDIR)
  188.   -rmdir /s /q $(TDIR)
  189. # Target to clean up all generated files.
  190. cleanall:
  191.   -del *.aps
  192.   -del *.bsc
  193.   -del *.dll
  194.   -del *.dsp
  195.   -del *.dsw
  196.   -del *.exe
  197.   -del *.exp
  198.   -del *.lib
  199.   -del *.mak
  200.   -del *.map
  201.   -del *.mdp
  202.   -del *.ncb
  203.   -del *.obj
  204.   -del *.opt
  205.   -del *.pch
  206.   -del *.pdb
  207.   -del *.plg
  208.   -del *.res
  209.   -del *.sbr
  210.   -del *.vcp
  211.   -del resource.h
  212.   -deltree /y $(TDIR)
  213.   -rmdir /s /q $(TDIR)
  214.   -deltree /y debug
  215.   -rmdir /s /q debug
  216.   -deltree /y release
  217.   -rmdir /s /q release