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 / conclien / makefile < prev    next >
Makefile  |  1997-08-05  |  7KB  |  205 lines

  1. #/*+=========================================================================
  2. #  File:       MAKEFILE
  3. #
  4. #  Summary:    Makefile for building the CONCLIEN.EXE binary.  CONCLIEN
  5. #              is a simple Win32 EXE that acts as a client of the CONSERVE
  6. #              DLL server to create and manipulate a COBall COM object.
  7. #
  8. #              CONCLIEN specifically works with the CONSERVE.DLL produced
  9. #              in the CONSERVE lesson (in sibling directory CONSERVE).
  10. #              This Makefile therefore depends on a prior build (and the
  11. #              resultant registration) of the CONSERVE.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 CONCLIEN's
  17. #              contents and offerings see the tutorial CONCLIEN.HTM
  18. #              file.  For more specific technical details see the comments
  19. #              dispersed throughout the CONCLIEN source code.
  20. #
  21. #              See also CONSERVE.HTM (in the main tutorial directory)
  22. #              more details on the CONSERVE server and how it works with
  23. #              for CONCLIEN.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:     CONCLIEN.EXE
  33. #
  34. #  Origin:     5-30-96: atrent - Editor-inheritance from FRECLIEN makefile.
  35. #
  36. #--Usage:-------------------------------------------------------------------
  37. #  NMAKE Options
  38. #
  39. #  Use the table below to determine the additional options for NMAKE to
  40. #  generate various application debugging, profiling and performance tuning
  41. #  information.
  42. #
  43. #  Application Information Type         Invoke NMAKE
  44. #  ----------------------------         ------------
  45. #  For No Debugging Info                nmake nodebug=1
  46. #  For Working Set Tuner Info           nmake tune=1
  47. #  For Call Attributed Profiling Info   nmake profile=1
  48. #
  49. #  Note: The three options above are mutually exclusive (you may use only
  50. #        one to compile/link the application).
  51. #
  52. #  Note: creating the environment variables NODEBUG, TUNE, and PROFILE
  53. #        is an alternate method to setting these options via the nmake
  54. #        command line.
  55. #
  56. #  Additional NMAKE Options             Invoke NMAKE
  57. #  ----------------------------         ------------
  58. #  For No ANSI NULL Compliance          nmake no_ansi=1
  59. #    (ANSI NULL is defined as PVOID 0)
  60. #  To compile for Unicode               nmake unicode=1
  61. #    (Default is ANSI)
  62. #  To clean up temporary binaries       nmake clean
  63. #  To clean up all generated files      nmake cleanall
  64. #
  65. #---------------------------------------------------------------------------
  66. #  This file is part of the Microsoft COM Tutorial Code Samples.
  67. #
  68. #  Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  69. #
  70. #  This source code is intended only as a supplement to Microsoft
  71. #  Development Tools and/or on-line documentation.  See these other
  72. #  materials for detailed information regarding Microsoft code samples.
  73. #
  74. #  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  75. #  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  76. #  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  77. #  PARTICULAR PURPOSE.
  78. #=========================================================================+*/
  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.  
  93. # Assign the main program name macro.
  94. PGM=conclien
  95.  
  96. # Use a temporary sub-directory to store intermediate
  97. # binary files like *.obj, *.res, *.map, etc.
  98. TDIR = TEMP
  99.  
  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.  
  106. LINK = $(link)
  107.  
  108. # If UNICODE=1 is defined then define UNICODE during Compiles.
  109. # The default is to compile with ANSI for running under both
  110. # Win95 and WinNT.
  111. !IFDEF UNICODE
  112. LINKFLAGS = $(ldebug)
  113. CDBG=$(cdebug) -DUNICODE -D_UNICODE
  114. RCFLAGS = -DWIN32 -DRC_INCLUDE -DUNICODE
  115. !ELSE
  116. LINKFLAGS = $(ldebug)
  117. CDBG=$(cdebug)
  118. RCFLAGS = -DWIN32 -DRC_INCLUDE
  119. !ENDIF
  120.  
  121. # If NODEBUG is not defined then define DEBUG during Compiles.
  122. # The default is to compile with debug symbols in the binaries.
  123. !IFNDEF NODEBUG
  124. CDBG = $(CDBG) -DDEBUG
  125. RCFLAGS = $(RCFLAGS) -DDEBUG
  126. !ENDIF
  127.  
  128. # APPLIBS are libraries used by this application that are outside
  129. # of its indigenous file set and are needed during the final link.
  130. APPLIBS = apputil.lib shell32.lib
  131.  
  132. # PGMOBJS is a macro that defines the object files for this application.
  133. PGMOBJS = $(TDIR)\$(PGM).obj $(TDIR)\guiball.obj $(TDIR)\sink.obj
  134.  
  135. # The final target.
  136. all: tempdir output
  137.  
  138. # Make the temporary work sub-directory.
  139. tempdir:
  140.   -mkdir $(TDIR)
  141.  
  142. # The actual output products.
  143. output: $(PGM).exe
  144.  
  145. # Compilation/Dependency rules for the main source files.
  146. $(TDIR)\$(PGM).obj: $(PGM).cpp $(PGM).h
  147.   $(cc) $(cvars) $(cflags) $(CDBG) -Fo$@ $(PGM).cpp
  148.  
  149. $(TDIR)\guiball.obj: guiball.cpp guiball.h
  150.   $(cc) $(cvars) $(cflags) $(CDBG) -Fo$@ guiball.cpp
  151.  
  152. $(TDIR)\sink.obj: sink.cpp sink.h
  153.   $(cc) $(cvars) $(cflags) $(CDBG) -Fo$@ sink.cpp
  154.  
  155. # Compile the resources.
  156. $(TDIR)\$(PGM).res: $(PGM).rc $(PGM).ico $(PGM).h
  157.   rc $(RCFLAGS) -r -fo$@ $(PGM).rc
  158.  
  159. # Link the object and resource binaries into the final target binary.
  160. $(PGM).exe: $(PGMOBJS) $(TDIR)\$(PGM).res
  161.   $(LINK) @<<
  162.     $(LINKFLAGS)
  163.     -out:$@
  164.     -map:$(TDIR)\$*.map
  165.     $(PGMOBJS)
  166.     $(TDIR)\$*.res
  167.     $(olelibs) $(APPLIBS)
  168. <<
  169.  
  170. # Target to clean up temporary binaries.
  171. clean:
  172.   -del $(PGM).pdb
  173.   -deltree /y $(TDIR)
  174.   -rmdir /s /q $(TDIR)
  175.  
  176. # Target to clean up all generated files.
  177. cleanall:
  178.   -del *.aps
  179.   -del *.bsc
  180.   -del *.dll
  181.   -del *.dsp
  182.   -del *.dsw
  183.   -del *.exe
  184.   -del *.exp
  185.   -del *.lib
  186.   -del *.mak
  187.   -del *.map
  188.   -del *.mdp
  189.   -del *.ncb
  190.   -del *.obj
  191.   -del *.opt
  192.   -del *.pch
  193.   -del *.pdb
  194.   -del *.plg
  195.   -del *.res
  196.   -del *.sbr
  197.   -del *.vcp
  198.   -del resource.h
  199.   -deltree /y $(TDIR)
  200.   -rmdir /s /q $(TDIR)
  201.   -deltree /y debug
  202.   -rmdir /s /q debug
  203.   -deltree /y release
  204.   -rmdir /s /q release
  205.