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

Windows编程

开发平台:

Visual C++

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