home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / tutsamp / perserve / makefile < prev    next >
Makefile  |  1997-09-09  |  8KB  |  245 lines

  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.  
  86. #  WIN32.MAK should be included at the front of every Win32 makefile.
  87. #
  88. #  Define APPVER = [ 3.50 | 3.51 | 4.0 ] prior to including win32.mak to get
  89. #  build time checking for version dependencies and to mark the executable
  90. #  with version information.
  91. #
  92. #  Define TARGETOS = [ WIN95 | WINNT | BOTH ] prior to including win32.mak
  93. #  to get some build time checking for platform dependencies.
  94. #
  95. APPVER=4.0
  96. TARGETOS=BOTH
  97. !include <win32.mak>
  98.  
  99. # Assign the main program name macros.
  100. DLL = perserve
  101.  
  102. # Use a temporary sub-directory to store intermediate
  103. # binary files like *.obj, *.res, *.map, etc.
  104. TDIR = TEMP
  105.  
  106. # Assign destination and consumer sibling directories.
  107. IDIR = ..\inc
  108. LDIR = ..\lib
  109.  
  110. REGEXE = ..\register\register.exe
  111.  
  112. # The sibling ..\INC and ..\LIB directories are added to the front of
  113. # the INCLUDE and LIB macros to inform the compiler and linker of
  114. # these application-specific locations for include and lib files.
  115. INCLUDE=$(IDIR);$(INCLUDE)
  116. LIB=$(LDIR);$(LIB)
  117.  
  118. LINK = $(link)
  119.  
  120. # If UNICODE=1 is defined then define UNICODE during Compiles.
  121. # The default is to compile with ANSI for running under both
  122. # Win95 and WinNT.
  123. !IFDEF UNICODE
  124. LINKFLAGS = $(ldebug)
  125. CDBG=$(cdebug) -DUNICODE -D_UNICODE
  126. RCFLAGS = -DWIN32 -DRC_INCLUDE -DUNICODE
  127. !ELSE
  128. LINKFLAGS = $(ldebug)
  129. CDBG=$(cdebug)
  130. RCFLAGS = -DWIN32 -DRC_INCLUDE
  131. !ENDIF
  132.  
  133. # If NODEBUG is not defined then define DEBUG during Compiles.
  134. # The default is to compile with debug symbols in the binaries.
  135. !IFNDEF NODEBUG
  136. CDBG = $(CDBG) -DDEBUG
  137. RCFLAGS = $(RCFLAGS) -DDEBUG
  138. !ENDIF
  139.  
  140. # APPLIBS are libraries used by this application that are outside
  141. # of its indigenous file set and are needed during the final link.
  142. APPLIBS = apputil.lib shell32.lib
  143.  
  144. # DLLOBJS is a macro that defines the object files for the DLL.
  145. DLLOBJS = $(TDIR)\$(DLL).obj $(TDIR)\server.obj $(TDIR)\factory.obj \
  146.   $(TDIR)\connect.obj $(TDIR)\pagelist.obj
  147.  
  148. # The final target.
  149. all: input tempdir output
  150.  
  151. # Check if prior builds were done.
  152. input:
  153.   @IF NOT EXIST $(REGEXE) echo !!!!!! You must build REGISTER first !!!!!!
  154.  
  155. # Make the temporary work sub-directory.
  156. tempdir:
  157.   -mkdir $(TDIR)
  158.  
  159. # The actual output products.
  160. # Register the server after it's DLL is built.
  161. output: $(DLL).dll
  162.   if exist $(DLL).DLL if exist $(REGEXE) $(REGEXE) $(DLL).dll
  163.  
  164. # Compilation/Dependency rules for the .DLL source files.
  165. #
  166. $(TDIR)\$(DLL).obj: $(DLL).cpp $(DLL).h server.h
  167.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ $(DLL).cpp
  168.  
  169. $(TDIR)\server.obj: server.cpp server.h $(DLL).h
  170.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ server.cpp
  171.  
  172. $(TDIR)\factory.obj: factory.cpp factory.h server.h $(DLL).h
  173.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ factory.cpp
  174.  
  175. $(TDIR)\connect.obj: connect.cpp connect.h server.h $(DLL).h
  176.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ connect.cpp
  177.  
  178. $(TDIR)\pagelist.obj: pagelist.cpp pagelist.h server.h $(DLL).h
  179.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ pagelist.cpp
  180.  
  181. # Compile the DLL resources.
  182. $(TDIR)\$(DLL).res: $(DLL).rc $(DLL).ico server.h
  183.   rc $(RCFLAGS) -r -fo$@ $(DLL).rc
  184.  
  185. # Link the object and resource binaries into the target DLL binary.
  186. # Build the import LIB file so apps can link to and use this DLL.
  187. $(DLL).dll: $(DLLOBJS) $(TDIR)\$(DLL).res
  188.     $(LINK)  @<<
  189.     $(LINKFLAGS) $(dlllflags)
  190.     -out:$@
  191.     -base:0x1C000000
  192.     -def:$*.def
  193.     -implib:$*.lib
  194.     -map:$(TDIR)\$*.map
  195.     $(DLLOBJS)
  196.     $(TDIR)\$*.res
  197.     $(olelibsdll) $(APPLIBS)
  198. <<
  199.  
  200.  
  201. # Target to register the server
  202. register:
  203.   if exist $(DLL).DLL if exist $(REGEXE) $(REGEXE) $(DLL).dll
  204.  
  205. # Target to unregister the server
  206. unregister:
  207.   if exist $(DLL).DLL if exist $(REGEXE) $(REGEXE) /u $(DLL).dll
  208.  
  209. # Target to clean up binaries.
  210. clean:
  211.   -del $(DLL).exp
  212.   -del $(DLL).lib
  213.   -deltree /y $(TDIR)
  214.   -rmdir /s /q $(TDIR)
  215.  
  216. # Target to clean up all generated files.
  217. cleanall:
  218.   -del *.aps
  219.   -del *.bsc
  220.   -del *.dll
  221.   -del *.dsp
  222.   -del *.dsw
  223.   -del *.exe
  224.   -del *.exp
  225.   -del *.lib
  226.   -del *.mak
  227.   -del *.map
  228.   -del *.mdp
  229.   -del *.ncb
  230.   -del *.obj
  231.   -del *.opt
  232.   -del *.pch
  233.   -del *.pdb
  234.   -del *.plg
  235.   -del *.res
  236.   -del *.sbr
  237.   -del *.vcp
  238.   -del resource.h
  239.   -deltree /y $(TDIR)
  240.   -rmdir /s /q $(TDIR)
  241.   -deltree /y debug
  242.   -rmdir /s /q debug
  243.   -deltree /y release
  244.   -rmdir /s /q release
  245.