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