home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / MFC / SAMPLES / HELLOAPP / MAKEFILE._ / MAKEFILE.
Encoding:
Text File  |  1993-02-08  |  741 b   |  24 lines

  1. # Makefile : Builds the helloapp application
  2. #
  3. # Usage:     NMAKE helloapp
  4.  
  5. # This is a part of the Microsoft Foundation Classes C++ library.
  6. # Copyright (C) 1992 Microsoft Corporation
  7. # All rights reserved.
  8. #
  9. # This source code is only intended as a supplement to the
  10. # Microsoft Foundation Classes Reference and Microsoft
  11. # WinHelp documentation provided with the library.
  12. # See these sources for detailed information regarding the
  13. # Microsoft Foundation Classes product.
  14. #
  15.  
  16. # Only retail build
  17. helloapp.exe: helloapp.cpp helloapp.def
  18.     cl /AM /O1 /F 1000 helloapp.def helloapp.cpp /link /ALIGN:4 /NOD /ONERROR:NOEXE mafxcw mlibcew libw shell commdlg
  19.     
  20. clean:
  21.     -del helloapp.exe
  22.     -del helloapp.map
  23.     -del helloapp.obj
  24.