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. !ifndef DEBUG
  19. DEBUG=1
  20. !endif
  21. !if "$(DEBUG)" == "1"
  22. all:
  23. nmake -f DB.mak CFG="DB - Win32 Debug"
  24. clean:
  25. @-if exist Debug*.* echo y | erase Debug*.*
  26. !else
  27. all:
  28. nmake -f DB.mak CFG="DB - Win32 Release"
  29. clean:
  30. @-if exist Release*.* echo y | erase Release*.*
  31. !endif