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