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

Windows编程

开发平台:

Visual C++

  1. # makefile - Handy makefile for command-line use
  2. #
  3. # Usage:
  4. #   nmake [options] [all|clean]
  5. #
  6. # Options:
  7. #   DEBUG=0     Build retail version
  8. #   DEBUG=1     Build debug version (default)
  9. # This is a part of the Microsoft Foundation Classes C++ library.
  10. # Copyright (C) 1992-1997 Microsoft Corporation
  11. # All rights reserved.
  12. #
  13. # This source code is only intended as a supplement to the
  14. # Microsoft Foundation Classes Reference and related
  15. # electronic documentation provided with the library.
  16. # See these sources for detailed information regarding the
  17. # Microsoft Foundation Classes product.
  18. PROJ=OLEVIEW
  19. OBJS=doc.obj        mainfrm.obj    obj_vw.obj     oleview.obj    regview.obj    shadow.obj    
  20.  util.obj       view.obj
  21. USES_OLE=1
  22. !include <mfcsamps.mak>
  23. # Review: non standard resoure filename
  24. #!if "$(DEBUG)" == "1"
  25. #all:
  26. #        nmake -f oleview.mak CFG="oleview - Win32 Debug"
  27. #clean:
  28. #   @-if exist Debug*.* echo y | erase Debug*.*
  29. #!else
  30. #all:
  31. #        nmake -f oleview.mak CFG="oleview - Win32 Release"
  32. #clean:
  33. #   @-if exist Release*.* echo y | erase Release*.*
  34. #!endif