home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK8 / MFC / SAMPLES / HELLOAPP / MAKEFILE.$ / makefile
Encoding:
Makefile  |  1992-03-05  |  756 b   |  25 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. # QuickHelp documentation provided with the library.
  12. # See these sources for detailed information regarding the
  13. # Microsoft Foundation Classes product.
  14. #
  15.  
  16. helloapp.exe: helloapp.obj helloapp.def
  17.     link /NOD /ONERROR:NOEXE helloapp,,,safxcw libw slibcew,helloapp.def;
  18.     rc -30 /t helloapp.exe
  19.  
  20. helloapp.obj: helloapp.cpp
  21.     cl /DWINVER=0x0300 /Zp /Oxs /c helloapp.cpp
  22. clean:
  23.     -del helloapp.exe
  24.     -del helloapp.obj
  25.