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

Windows编程

开发平台:

Visual C++

  1. #/*+=========================================================================
  2. #  File:       MAKEFILE
  3. #
  4. #  Summary:    Makefile for building the DCDMARSH.DLL marshaling server
  5. #              that provides the necessary Proxys and Stubs to provide
  6. #              standard marshaling for the IPaper custom interface.
  7. #              PAPINT.IDL is the primary source for this lesson. It
  8. #              contains the interface specifications in the MIDL language.
  9. #              During the build, MIDL creates the following intermediate
  10. #              source files that are compiled to produce the final
  11. #              DCDMARSH.DLL: PAPINT.H, PAPINT_I.C, PAPINT_P.C, and
  12. #              DLLDATA.C. The generated PAPINT.H file is included by
  13. #              modules in other programs that make use of IPaper.
  14. #
  15. #              This Makefile creates a subdirectory (TEMP) for the
  16. #              .OBJ and .RES files used during the build process.  It also
  17. #              automatically registers the newly built DLL server in the
  18. #              system Registry.  Since the build of this makefile does this
  19. #              registration you must build the REGISTER.EXE utility first
  20. #              (in sibling directory REGISTER).
  21. #
  22. #              For a comprehensive tutorial code tour of DCDMARSH's
  23. #              contents and offerings see the tutorial DCDMARSH.HTM
  24. #              file.  For more specific technical details see the comments
  25. #              dispersed throughout the DCDMARSH source code.
  26. #
  27. #              See also DCOMDRAW.HTM and DCDSERVE.HTM (in the main
  28. #              tutorial directory) for more details on this client/server
  29. #              pair works with DCDMARSH.DLL marshaling server.
  30. #
  31. #              In general, to set up your system to build and test the
  32. #              Win32 code samples in this COM Tutorial series, see the
  33. #              global TUTORIAL.HTM file for details.  This MAKEFILE is
  34. #              Microsoft NMAKE compatible and the 'debug' build can be
  35. #              achieved by simply issuing the NMAKE command in a command
  36. #              prompt window.
  37. #
  38. #  Builds:     DCDMARSH.DLL, DCDMARSH.LIB, PAPINT.H, PAPINT_I.C, PAPINT_P.C,
  39. #              DLLDATA.C.
  40. #
  41. #  Origin:     8-23-97: atrent - Editor-inheritance from MARSHAL source.
  42. #
  43. #--Usage:-------------------------------------------------------------------
  44. #  NMAKE Options
  45. #
  46. #  Use the table below to determine the additional options for NMAKE to
  47. #  generate various application debugging, profiling and performance tuning
  48. #  information.
  49. #
  50. #  Application Information Type         Invoke NMAKE
  51. #  ----------------------------         ------------
  52. #  For No Debugging Info                nmake nodebug=1
  53. #  For Working Set Tuner Info           nmake tune=1
  54. #  For Call Attributed Profiling Info   nmake profile=1
  55. #
  56. #  Note: The three options above are mutually exclusive (you may use only
  57. #        one to compile/link the application).
  58. #
  59. #  Note: creating the environment variables NODEBUG, TUNE, and PROFILE
  60. #        is an alternate method to setting these options via the nmake
  61. #        command line.
  62. #
  63. #  Additional NMAKE Options             Invoke NMAKE
  64. #  ----------------------------         ------------
  65. #  For No ANSI NULL Compliance          nmake no_ansi=1
  66. #    (ANSI NULL is defined as PVOID 0)
  67. #  To compile for Unicode               nmake unicode=1
  68. #    (Default is ANSI)
  69. #  To clean up temporary binaries       nmake clean
  70. #  To clean up all generated files      nmake cleanall
  71. #  To register DLL                      nmake register
  72. #  To unregister DLL                    nmake unregister
  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 macros.
  101. DLL = dcdmarsh
  102. # Use a temporary sub-directory to store intermediate
  103. # binary files like *.obj, *.res, *.map, etc.
  104. TDIR = TEMP
  105. # Assign destination and consumer sibling directories.
  106. IDIR = ..inc
  107. LDIR = ..lib
  108. REGEXE = ..registerregister.exe
  109. # The sibling ..INC and ..LIB directories are added to the front of
  110. # the INCLUDE and LIB macros to inform the compiler and linker of
  111. # these application-specific locations for include and lib files.
  112. INCLUDE=$(IDIR);$(INCLUDE)
  113. LIB=$(LDIR);$(LIB)
  114. LINK = $(link)
  115. # If UNICODE=1 is defined then define UNICODE during Compiles.
  116. # The default is to compile with ANSI for running under both
  117. # Win95 and WinNT.
  118. !IFDEF UNICODE
  119. LINKFLAGS = $(ldebug)
  120. CDBG=$(cdebug) -DUNICODE -D_UNICODE
  121. RCFLAGS = -DWIN32 -DRC_INCLUDE -DUNICODE
  122. !ELSE
  123. LINKFLAGS = $(ldebug)
  124. CDBG=$(cdebug)
  125. RCFLAGS = -DWIN32 -DRC_INCLUDE
  126. !ENDIF
  127. # If NODEBUG is not defined then define DEBUG during Compiles.
  128. # The default is to compile with debug symbols in the binaries.
  129. !IFNDEF NODEBUG
  130. CDBG = $(CDBG) -DDEBUG
  131. RCFLAGS = $(RCFLAGS) -DDEBUG
  132. !ENDIF
  133. # APPLIBS are libraries used by this application that are outside
  134. # of its indigenous file set and are needed during the final link.
  135. APPLIBS = rpcrt4.lib
  136. # DLLOBJS is a macro that defines the object files for the DLL.
  137. DLLOBJS = $(TDIR)dlldata.obj $(TDIR)papint_p.obj $(TDIR)papint_i.obj
  138. # The final target.
  139. all: input tempdir output
  140. # Check if prior builds were done.
  141. input:
  142.   @IF NOT EXIST $(REGEXE) echo !!!!!! You must build REGISTER first !!!!!!
  143. # Make the temporary work sub-directory.
  144. tempdir:
  145.   -mkdir $(TDIR)
  146. # Generate the proxy/stub source from the .IDL file.
  147. # PAPINT.IDL is the primary driving source for this entire proxy/stub DLL.
  148. papint.h papint_p.c papint_i.c dlldata.c: papint.idl
  149.   midl /app_config papint.idl
  150. # The actual output products.
  151. # Register the server after it's DLL is built.
  152. output: papint.h papint_p.c papint_i.c dlldata.c $(DLL).dll
  153.   if exist $(DLL).DLL if exist $(REGEXE) $(REGEXE) $(DLL).dll
  154.   if exist papint.h copy papint.h $(IDIR)
  155. # Compilation/Dependency rules for the .DLL source files.
  156. #
  157. $(TDIR)papint_i.obj: papint.h
  158.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ papint_i.c
  159. $(TDIR)papint_p.obj: papint.h
  160.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -Fo$@ papint_p.c
  161. # Note the compiler switch that defines REGISTER_PROXY_DLL.
  162. # This turns on conditional compilaiton of default definitions for the
  163. # DllMain, DllRegisterServer, and DllUnregisterServer functions. This
  164. # means that these functions do not need to be explicitly defined
  165. # in a separate source module.
  166. $(TDIR)dlldata.obj: papint.h
  167.   $(cc) $(cvarsdll) $(cflags) $(CDBG) -DREGISTER_PROXY_DLL -Fo$@ dlldata.c
  168. # Link the object and resource binaries into the target DLL binary.
  169. # Build the import LIB file so apps can link to and use this DLL.
  170. $(DLL).dll: $(DLLOBJS)
  171.     $(LINK)  @<<
  172.     $(LINKFLAGS) $(dlllflags)
  173.     -out:$@
  174.     -base:0x1C000000
  175.     -def:$*.def
  176.     -implib:$*.lib
  177.     -map:$(TDIR)$*.map
  178.     $(DLLOBJS)
  179.     $(olelibsdll) $(APPLIBS)
  180. <<
  181. # Target to register the server
  182. register:
  183.   if exist $(DLL).DLL if exist $(REGEXE) $(REGEXE) $(DLL).dll
  184. # Target to unregister the server
  185. unregister:
  186.   if exist $(DLL).DLL if exist $(REGEXE) $(REGEXE) /u $(DLL).dll
  187. # Target to clean up binaries.
  188. clean:
  189.   -del $(DLL).exp
  190.   -del $(DLL).lib
  191.   -del papint.h
  192.   -del papint_i.c
  193.   -del papint_p.c
  194.   -del dlldata.c
  195.   -deltree /y $(TDIR)
  196.   -rmdir /s /q $(TDIR)
  197. # Target to clean up all generated files.
  198. cleanall:
  199.   -del *.aps
  200.   -del *.bsc
  201.   -del *.dll
  202.   -del *.dsp
  203.   -del *.dsw
  204.   -del *.exe
  205.   -del *.exp
  206.   -del *.lib
  207.   -del *.mak
  208.   -del *.map
  209.   -del *.mdp
  210.   -del *.ncb
  211.   -del *.obj
  212.   -del *.opt
  213.   -del *.pch
  214.   -del *.pdb
  215.   -del *.plg
  216.   -del *.res
  217.   -del *.sbr
  218.   -del *.vcp
  219.   -del resource.h
  220.   -del papint.h
  221.   -del papint_i.c
  222.   -del papint_p.c
  223.   -del dlldata.c
  224.   -deltree /y $(TDIR)
  225.   -rmdir /s /q $(TDIR)
  226.   -deltree /y debug
  227.   -rmdir /s /q debug
  228.   -deltree /y release
  229.   -rmdir /s /q release