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

Windows编程

开发平台:

Visual C++

  1. #/*+=========================================================================
  2. #  File:       MAKEFILE
  3. #
  4. #  Summary:    Makefile for building the APTSERVE.EXE binary.  APTSERVE
  5. #              is a local apartment threaded COM server that offers the
  6. #              Car, UtilityCar, and CruiseCar components each in separte
  7. #              multithreading Apartments. As a local server APTSERVE makes
  8. #              used of the custom car-related interfaces (ICar, IUtility,
  9. #              and ICruise) that are marshaled by the MARSHAL.DLL server.
  10. #              This Makefile thus depends on the prior build (and the
  11. #              resultant registration) of the MARSHAL.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 APTSERVE's
  17. #              contents and offerings see the tutorial APTSERVE.HTM
  18. #              file.  For more specific technical details see the comments
  19. #              dispersed throughout the APTSERVE source code.
  20. #
  21. #              See also APTCLIEN.HTM (in the main tutorial directory) for
  22. #              more details on the APTCLIEN client and how it works with
  23. #              APTSERVE.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 a command
  30. #              prompt window.
  31. #
  32. #  Builds:     APTSERVE.EXE
  33. #
  34. #  Origin:     3-20-96: atrent - Editor-inheritance from LOCCLIEN 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. #  To register server                   nmake register
  65. #  To unregister server                 nmake unregister
  66. #
  67. #---------------------------------------------------------------------------
  68. #  This file is part of the Microsoft COM Tutorial Code Samples.
  69. #
  70. #  Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  71. #
  72. #  This source code is intended only as a supplement to Microsoft
  73. #  Development Tools and/or on-line documentation.  See these other
  74. #  materials for detailed information regarding Microsoft code samples.
  75. #
  76. #  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  77. #  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  78. #  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  79. #  PARTICULAR PURPOSE.
  80. #=========================================================================+*/
  81. #  WIN32.MAK should be included at the front of every Win32 makefile.
  82. #
  83. #  Define APPVER = [ 3.50 | 3.51 | 4.0 ] prior to including win32.mak to get
  84. #  build time checking for version dependencies and to mark the executable
  85. #  with version information.
  86. #
  87. #  Define TARGETOS = [ WIN95 | WINNT | BOTH ] prior to including win32.mak
  88. #  to get some build time checking for platform dependencies.
  89. #
  90. APPVER=4.0
  91. TARGETOS=BOTH
  92. !include <win32.mak>
  93. # Assign the main program name macro.
  94. PGM=aptserve
  95. # Use a temporary sub-directory to store intermediate
  96. # binary files like *.obj, *.res, *.map, etc.
  97. TDIR = TEMP
  98. # The sibling ..INC and ..LIB directories are added to the front of
  99. # the INCLUDE and LIB macros to inform the compiler and linker of
  100. # these application-specific locations for include and lib files.
  101. INCLUDE=..inc;$(INCLUDE)
  102. LIB=..lib;$(LIB)
  103. LINK = $(link)
  104. REGEXE = ..registerregister.exe
  105. # If UNICODE=1 is defined then define UNICODE during Compiles.
  106. # The default is to compile with ANSI for running under both
  107. # Win95 and WinNT.
  108. !IFDEF UNICODE
  109. LINKFLAGS = $(ldebug) /NOD:libc.lib /NOD:msvcrt.lib /NOD:libcd.lib 
  110.   /NOD:libcmtd.lib /NOD:msvcrtd.lib
  111. CDBG=$(cdebug) -DUNICODE -D_UNICODE
  112. RCFLAGS = -DWIN32 -DRC_INCLUDE -DUNICODE
  113. !ELSE
  114. LINKFLAGS = $(ldebug) /NOD:libc.lib /NOD:msvcrt.lib /NOD:libcd.lib 
  115.   /NOD:libcmtd.lib /NOD:msvcrtd.lib
  116. CDBG=$(cdebug)
  117. RCFLAGS = -DWIN32 -DRC_INCLUDE
  118. !ENDIF
  119. # If NODEBUG is not defined then define DEBUG during Compiles.
  120. # The default is to compile with debug symbols in the binaries.
  121. !IFNDEF NODEBUG
  122. CDBG = $(CDBG) -DDEBUG
  123. RCFLAGS = $(RCFLAGS) -DDEBUG
  124. !ENDIF
  125. # APPLIBS are libraries used by this application that are outside
  126. # of its indigenous file set and are needed during the final link.
  127. APPLIBS = apputil.lib shell32.lib
  128. # PGMOBJS is a macro that defines the object files for this application.
  129. PGMOBJS = $(TDIR)$(PGM).obj $(TDIR)server.obj $(TDIR)factory.obj 
  130.   $(TDIR)car.obj $(TDIR)utilcar.obj $(TDIR)crucar.obj
  131. # The final target.
  132. all: tempdir output
  133. # Make the temporary work sub-directory.
  134. tempdir:
  135.   -mkdir $(TDIR)
  136. # The actual output products.
  137. output: $(PGM).exe
  138.   if exist $(PGM).EXE if exist $(REGEXE) $(REGEXE) /e $(PGM).EXE
  139. # Compilation/Dependency rules for the main source files.
  140. $(TDIR)$(PGM).obj: $(PGM).cpp $(PGM).h
  141.   $(cc) $(cvarsmt) $(cflags) $(CDBG) -Fo$@ $(PGM).cpp
  142. $(TDIR)server.obj: server.cpp server.h $(PGM).h
  143.   $(cc) $(cvarsmt) $(cflags) $(CDBG) -Fo$@ server.cpp
  144. $(TDIR)factory.obj: factory.cpp factory.h server.h $(PGM).h
  145.   $(cc) $(cvarsmt) $(cflags) $(CDBG) -Fo$@ factory.cpp
  146. $(TDIR)car.obj: car.cpp car.h server.h $(PGM).h
  147.   $(cc) $(cvarsmt) $(cflags) $(CDBG) -Fo$@ car.cpp
  148. $(TDIR)utilcar.obj: utilcar.cpp utilcar.h server.h $(PGM).h
  149.   $(cc) $(cvarsmt) $(cflags) $(CDBG) -Fo$@ utilcar.cpp
  150. $(TDIR)crucar.obj: crucar.cpp crucar.h server.h $(PGM).h
  151.   $(cc) $(cvarsmt) $(cflags) $(CDBG) -Fo$@ crucar.cpp
  152. # Compile the resources.
  153. $(TDIR)$(PGM).res: $(PGM).rc $(PGM).ico $(PGM).h
  154.   rc $(RCFLAGS) -r -fo$@ $(PGM).rc
  155. # Link the object and resource binaries into the final target binary.
  156. $(PGM).exe: $(PGMOBJS) $(TDIR)$(PGM).res
  157.   $(LINK) @<<
  158.     $(LINKFLAGS)
  159.     -out:$@
  160.     -map:$(TDIR)$*.map
  161.     $(PGMOBJS)
  162.     $(TDIR)$*.res
  163.     $(olelibsmt) $(APPLIBS)
  164. <<
  165. # Target to register the server
  166. register:
  167.   if exist $(PGM).EXE if exist $(REGEXE) $(REGEXE) /e $(PGM).EXE
  168. # Target to unregister the server
  169. unregister:
  170.   if exist $(PGM).EXE if exist $(REGEXE) $(REGEXE) /e /u $(PGM).EXE
  171. # Target to clean up temporary binaries.
  172. clean:
  173.   -del $(PGM).pdb
  174.   -deltree /y $(TDIR)
  175.   -rmdir /s /q $(TDIR)
  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