home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-02-16 | 1.4 KB | 41 lines |
- # **********************************************************************
- # * DISCLAIMER OF WARRANTIES: *
- # * *
- # * The following enclosed code is sample code created by IBM *
- # * Corporation. This sample code is not part of any standard IBM *
- # * product and is provided to you solely for the purpose of assisting *
- # * you in the development of your applications. The code is provided *
- # * "AS IS", without warranty of any kind. IBM shall not be liable *
- # * for any damages arising out of your use of the sample code, even *
- # * if they have been advised of the possibility of such damages *
- # * *
- # **********************************************************************
- #
- # Welcome to VisualAge for C++ tutorial - Welcome sample makefile
-
- .SUFFIXES: .cpp .obj .
-
- all: \
- welcome.exe
-
- .CPP.obj:
- @echo " Compile::C++ Compiler "
- icc.exe /Fb /Q /Ti /Gh /Gm /Gd /Wpro- /Fo"%|dpfF.obj" /C %s
-
- welcome.exe: imp.obj oview.obj
- @echo " Link::Linker "
- icc.exe @<<
- /Q /B" /de /br /noe"
- /Fewelcome.exe cppwpa3.obj
- $**
- <<
-
- imp.obj: \
- imp.cpp
-
- oview.obj: \
- oview.cpp
-
- clean:
- del *.obj *.exp *.lib *.dll *.exe *.pdb *.map