home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-02-20 | 1.5 KB | 49 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 *
- # * *
- # **********************************************************************
- #
- # sample05 makefile
-
- .SUFFIXES: .C .obj
-
- .all: .\sample05.dll \
- .\main05.exe
-
- .C.obj:
- @echo " Compile::C++ Compiler "
- icc.exe /Q /Gh /Gd /I.\dll /Gm /Ti /Fo"%|dpfF.obj" /C %s
-
- .\main05.exe: .\MAIN05.obj {$(LIB)}cppwpa3.obj .\dll\sample05.lib
- @echo " Link::Linker "
- icc.exe @<<
- /Q
- /B" /de /noe"
- /Fe.\main05.exe
- $**
- <<
-
- .\sample05.dll: .\dll\sample05.dll
- copy .\dll\sample05.dll
-
- .\MAIN05.obj: \
- .\MAIN05.C \
- {.;$(INCLUDE);.\dll;}sample05.h
-
- clean:
- - @del *.obj
- - @del *.exp
- - @del *.lib
- - @del *.dll
- - @del *.exe
- - @del *.pdb
- - @del *.map