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

Windows编程

开发平台:

Visual C++

  1. #/*+=========================================================================
  2. #  File:       MAKEFILE
  3. #
  4. #  Summary:    Makefile for building the MARSHAL.DLL marshaling server
  5. #              that provides the necessary Proxys and Stubs for the
  6. #              ICar, IUtility, and ICruise interfaces that are to be
  7. #              used across thread, process, or machine  boundaries in
  8. #              later samples in the series. The MIDL compiler is used for
  9. #              this.  MICARS.IDL is the primary source for this lesson. It
  10. #              contains the interface specifications in the MIDL language.
  11. #              During the build, MIDL creates the following intermediate
  12. #              source files that are compiled to produce the final
  13. #              MARSHAL.DLL: MICARS.H, MICARS_I.C, MICARS_P.C, and
  14. #              DLLDATA.C.
  15. #
  16. #              This Makefile creates a subdirectory (TEMP) for the
  17. #              .OBJ and .RES files used during the build process.  It also
  18. #              automatically registers the newly built DLL server in the
  19. #              system Registry.  Since the build of this makefile does this
  20. #              registration you must build the REGISTER.EXE utility first
  21. #              (in sibling directory REGISTER).
  22. #
  23. #              For a comprehensive tutorial code tour of MARSHAL's
  24. #              contents and offerings see the tutorial MARSHAL.HTM
  25. #              file.  For more specific technical details see the comments
  26. #              dispersed throughout the MARSHAL source code.
  27. #
  28. #              See also LOCCLIEN.HTM and LOCSERVE.HTM (in the main
  29. #              tutorial directory) for more details on this client/server
  30. #              pair works with MARSHAL.DLL marshaling server. LOCCLIEN and
  31. #              LOCSERVE are the first samples in the series that use
  32. #              interfaces across boundaries that require marshaling.
  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:     MARSHAL.DLL, MARSHAL.LIB, MICARS.H, MICARS_I.C, MICARS_P.C,
  42. #              DLLDATA.C.
  43. #
  44. #  Origin:     11-24-95: atrent - Editor-inheritance from DLLSERVE source.
  45. #
  46. #--Usage:-------------------------------------------------------------------
  47. #  NMAKE Options
  48. #
  49. #  Use the table below to determine the additional options for NMAKE to
  50. #  generate various application debugging, profiling and performance tuning
  51. #  information.
  52. #
  53. #  Application Information Type         Invoke NMAKE
  54. #  ----------------------------         ------------
  55. #  For No Debugging Info                nmake nodebug=1
  56. #  For Working Set Tuner Info           nmake tune=1
  57. #  For Call Attributed Profiling Info   nmake profile=1
  58. #
  59. #  Note: The three options above are mutually exclusive (you may use only
  60. #        one to compile/link the application).
  61. #
  62. #  Note: creating the environment variables NODEBUG, TUNE, and PROFILE
  63. #        is an alternate method to setting these options via the nmake
  64. #        command line.
  65. #
  66. #  Additional NMAKE Options             Invoke NMAKE
  67. #  ----------------------------         ------------
  68. #  For No ANSI NULL Compliance          nmake no_ansi=1
  69. #    (ANSI NULL is defined as PVOID 0)
  70. #  To compile for Unicode               nmake unicode=1
  71. #    (Default is ANSI)
  72. #  To clean up temporary binaries       nmake clean
  73. #  To clean up all generated files      nmake cleanall
  74. #  To register DLL                      nmake register
  75. #  To unregister DLL                    nmake unregister
  76. #
  77. #---------------------------------------------------------------------------
  78. #  This file is part of the Microsoft COM Tutorial Code Samples.
  79. #
  80. #  Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  81. #
  82. #  This source code is intended only as a supplement to Microsoft
  83. #  Development Tools and/or on-line documentation.  See these other
  84. #  materials for detailed information regarding Microsoft code samples.
  85. #
  86. #  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  87. #  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  88. #  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  89. #  PARTICULAR PURPOSE.
  90. #=========================================================================+*/
  91. #  WIN32.MAK should be included at the front of every Win32 makefile.
  92. #
  93. #  Define APPVER = [ 3.50 | 3.51 | 4.0 ] prior to including win32.mak to get
  94. #  build time checking for version dependencies and to mark the executable
  95. #  with version information.
  96. #
  97. #  Define TARGETOS = [ WIN95 | WINNT | BOTH ] prior to including win32.mak
  98. #  to get some build time checking for platform dependencies.
  99. #
  100. APPVER=4.0
  101. TARGETOS=BOTH
  102. !include <win32.mak>
  103. # Assign the main program name macros.
  104. DLL = marshal
  105. # Use a temporary sub-directory to store intermediate
  106. # binary files like *.obj, *.res, *.map, etc.
  107. TDIR = TEMP
  108. # Assign destination and consumer sibling directories.
  109. IDIR = ..inc
  110. LDIR = ..lib
  111. REGEXE = ..registerregister.exe
  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. LINK = $(link)
  118. # If UNICODE=1 is defined then define UNICODE during Compiles.
  119. # The default is to compile with ANSI for running under both
  120. # Win95 and WinNT.
  121. !IFDEF UNICODE
  122. LINKFLAGS = $(ldebug)
  123. CDBG=$(cdebug) -DUNICODE -D_UNICODE
  124. RCFLAGS = -DWIN32 -DRC_INCLUDE -DUNICODE
  125. !ELSE
  126. LINKFLAGS = $(ldebug)
  127. CDBG=$(cdebug)
  128. RCFLAGS = -DWIN32 -DRC_INCLUDE
  129. !ENDIF
  130. # If NODEBUG is not defined then define DEBUG during Compiles.
  131. # The default is to compile with debug symbols in the binaries.
  132. !IFNDEF NODEBUG
  133. CDBG = $(CDBG) -DDEBUG
  134. RCFLAGS = $(RCFLAGS) -DDEBUG
  135. !ENDIF
  136. # APPLIBS are libraries used by this application that are outside
  137. # of its indigenous file set and are needed during the final link.
  138. APPLIBS = rpcrt4.lib
  139. # DLLOBJS is a macro that defines the object files for the DLL.
  140. DLLOBJS = $(TDIR)dlldata.obj $(TDIR)micars_p.obj $(TDIR)micars_i.obj
  141. # The final target.
  142. all: input tempdir output
  143. # Check if prior builds were done.
  144. input:
  145.   @IF NOT EXIST $(REGEXE) echo !!!!!! You must build REGISTER first !!!!!!
  146. # Make the temporary work sub-directory.
  147. tempdir:
  148.   -mkdir $(TDIR)
  149. # Generate the proxy/stub source from the .IDL file.
  150. # MICARS.IDL is the primary driving source for this entire proxy/stub DLL.
  151. micars.h micars_p.c micars_i.c dlldata.c: micars.idl
  152.   midl /ms_ext /app_config /c_ext micars.idl
  153. # The actual output products.
  154. # Register the server after it's DLL is built.
  155. output: micars.h micars_p.c micars_i.c dlldata.c $(DLL).dll
  156.   if exist $(DLL).DLL if exist $(REGEXE) $(REGEXE) $(DLL).dll
  157.   if exist micars.h copy micars.h $(IDIR)
  158. # Compilation/Dependency rules for the .DLL source files.
  159. #
  160. $(TDIR)micars_i.obj: micars.h
  161.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ micars_i.c
  162. $(TDIR)micars_p.obj: micars.h
  163.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ micars_p.c
  164. # Note the compiler switch that defines REGISTER_PROXY_DLL.
  165. # This turns on conditional compilaiton of default definitions for the
  166. # DllMain, DllRegisterServer, and DllUnregisterServer functions. This
  167. # means that these functions do not need to be explicitly defined
  168. # in a separate source module.
  169. $(TDIR)dlldata.obj: micars.h
  170.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -DREGISTER_PROXY_DLL -Fo$@ dlldata.c
  171. # Link the object and resource binaries into the target DLL binary.
  172. # Build the import LIB file so apps can link to and use this DLL.
  173. $(DLL).dll: $(DLLOBJS)
  174.     $(LINK)  @<<
  175.     $(LINKFLAGS) $(dlllflags)
  176.     -out:$@
  177.     -base:0x1C000000
  178.     -def:$*.def
  179.     -implib:$*.lib
  180.     -map:$(TDIR)$*.map
  181.     $(DLLOBJS)
  182.     $(olelibsdll) $(APPLIBS)
  183. <<
  184. # Target to register the server
  185. register:
  186.   if exist $(DLL).DLL if exist $(REGEXE) $(REGEXE) $(DLL).dll
  187. # Target to unregister the server
  188. unregister:
  189.   if exist $(DLL).DLL if exist $(REGEXE) $(REGEXE) /u $(DLL).dll
  190. # Target to clean up binaries.
  191. clean:
  192.   -del $(DLL).exp
  193.   -del $(DLL).lib
  194.   -del micars.h
  195.   -del micars_i.c
  196.   -del micars_p.c
  197.   -del dlldata.c
  198.   -deltree /y $(TDIR)
  199.   -rmdir /s /q $(TDIR)
  200. # Target to clean up all generated files.
  201. cleanall:
  202.   -del *.aps
  203.   -del *.bsc
  204.   -del *.dll
  205.   -del *.dsp
  206.   -del *.dsw
  207.   -del *.exe
  208.   -del *.exp
  209.   -del *.lib
  210.   -del *.mak
  211.   -del *.map
  212.   -del *.mdp
  213.   -del *.ncb
  214.   -del *.obj
  215.   -del *.opt
  216.   -del *.pch
  217.   -del *.pdb
  218.   -del *.plg
  219.   -del *.res
  220.   -del *.sbr
  221.   -del *.vcp
  222.   -del resource.h
  223.   -del micars.h
  224.   -del micars_i.c
  225.   -del micars_p.c
  226.   -del dlldata.c
  227.   -deltree /y $(TDIR)
  228.   -rmdir /s /q $(TDIR)
  229.   -deltree /y debug
  230.   -rmdir /s /q debug
  231.   -deltree /y release
  232.   -rmdir /s /q release