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

Windows编程

开发平台:

Visual C++

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