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. #   UNICODE=0   Build ANSI/DBCS version (default)
  10. #   UNICODE=1   Build Unicode version
  11. # This is a part of the Microsoft Foundation Classes C++ library.
  12. # Copyright (C) 1992-1997 Microsoft Corporation
  13. # All rights reserved.
  14. #
  15. # This source code is only intended as a supplement to the
  16. # Microsoft Foundation Classes Reference and related
  17. # electronic documentation provided with the library.
  18. # See these sources for detailed information regarding the
  19. # Microsoft Foundation Classes product.
  20. !ifndef UNICODE
  21. UNICODE=0
  22. !endif
  23. !ifndef DEBUG
  24. DEBUG=1
  25. !endif
  26. !if "$(UNICODE)" == "1"
  27. !if "$(DEBUG)" == "1"
  28. all:
  29. nmake -f testhelp.mak CFG="testhelp - Win32 Unicode Debug"
  30. clean:
  31. @-if exist UniDebug*.* echo y | erase UniDebug*.*
  32. !else
  33. all:
  34. nmake -f testhelp.mak CFG="testhelp - Win32 Unicode Release"
  35. clean:
  36. @-if exist UniRelease*.* echo y | erase UniRelease*.*
  37. !endif
  38. !else
  39. !if "$(DEBUG)" == "1"
  40. all:
  41. nmake -f testhelp.mak CFG="testhelp - Win32 Debug"
  42. clean:
  43. @-if exist Debug*.* echo y | erase Debug*.*
  44. !else
  45. all:
  46. nmake -f testhelp.mak CFG="testhelp - Win32 Release"
  47. clean:
  48. @-if exist Release*.* echo y | erase Release*.*
  49. !endif
  50. !endif