home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / tutsamp / marshal2 / makefile < prev    next >
Makefile  |  1997-09-09  |  9KB  |  258 lines

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