home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-02-20 | 1.4 KB | 46 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 *
- # * *
- # **********************************************************************
- #
- # sample07 makefile
-
- .SUFFIXES: .cpp .obj .exp
-
- all: \
- .\vf.dll .\main.exe
-
- .cpp.obj:
- @echo " Compile::C++ Compiler "
- icc.exe /I.\dll /Q /Gd /Gh /Ti /Fo"%|dpfF.obj" /C %s
-
- .\main.exe: \
- .\main.obj \
- .\dll\vf.lib \
- {$(LIB)}cppwpa3.obj
- icc.exe /q /b"/de /map" /Gd $**
-
- .\main.obj: .\main.cpp {.;$(INCLUDE);.\dll}vf.h
-
- .\vf.dll: .\dll\vf.dll
- copy $** .
-
-
-
- clean:
- - @del *.obj
- - @del *.exp
- - @del *.lib
- - @del *.dll
- - @del *.exe
- - @del *.pdb
- - @del *.map