home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / controls / db / makefile < prev    next >
Makefile  |  1998-03-26  |  897b  |  35 lines

  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.  
  10. # This is a part of the Microsoft Foundation Classes C++ library.
  11. # Copyright (C) 1992-1997 Microsoft Corporation
  12. # All rights reserved.
  13. #
  14. # This source code is only intended as a supplement to the
  15. # Microsoft Foundation Classes Reference and related
  16. # electronic documentation provided with the library.
  17. # See these sources for detailed information regarding the
  18. # Microsoft Foundation Classes product.
  19.  
  20. !ifndef DEBUG
  21. DEBUG=1
  22. !endif
  23.  
  24. !if "$(DEBUG)" == "1"
  25. all:
  26.     nmake -f DB.mak CFG="DB - Win32 Debug"
  27. clean:
  28.     @-if exist Debug\*.* echo y | erase Debug\*.*
  29. !else
  30. all:
  31.     nmake -f DB.mak CFG="DB - Win32 Release"
  32. clean:
  33.     @-if exist Release\*.* echo y | erase Release\*.*
  34. !endif
  35.