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

Windows编程

开发平台:

Visual C++

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