home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / tutorial / welcome / makefile < prev    next >
Encoding:
Makefile  |  1996-02-16  |  1.4 KB  |  41 lines

  1. # **********************************************************************
  2. # * DISCLAIMER OF WARRANTIES:                                          *
  3. # *                                                                    *
  4. # * The following enclosed code is sample code created by IBM          *
  5. # * Corporation.  This sample code is not part of any standard IBM     *
  6. # * product and is provided to you solely for the purpose of assisting *
  7. # * you in the development of your applications.  The code is provided *
  8. # * "AS IS", without warranty of any kind.  IBM shall not be liable    *
  9. # * for any damages arising out of your use of the sample code, even   *
  10. # * if they have been advised of the possibility of such damages       *
  11. # *                                                                    *
  12. # **********************************************************************
  13. #
  14. # Welcome to VisualAge for C++ tutorial - Welcome sample makefile
  15.  
  16. .SUFFIXES: .cpp .obj .
  17.  
  18. all: \
  19.     welcome.exe
  20.  
  21. .CPP.obj:
  22.     @echo " Compile::C++ Compiler "
  23.     icc.exe  /Fb /Q /Ti /Gh /Gm /Gd /Wpro- /Fo"%|dpfF.obj" /C %s
  24.  
  25. welcome.exe: imp.obj oview.obj
  26.     @echo " Link::Linker "
  27.     icc.exe @<<
  28.      /Q /B" /de /br /noe"
  29.      /Fewelcome.exe cppwpa3.obj
  30.      $**
  31. <<
  32.  
  33. imp.obj: \
  34.     imp.cpp
  35.  
  36. oview.obj: \
  37.     oview.cpp
  38.  
  39. clean:
  40.    del *.obj *.exp *.lib *.dll *.exe *.pdb *.map
  41.