home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-02-20 | 1.4 KB | 44 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 *
- # * *
- # **********************************************************************
- #
- # Structured Exception Handling Sample makefile
-
- .SUFFIXES: .C .obj .
-
- .all: \
- seh.exe
-
- .C.obj:
- @echo " Compile::C++ Compiler "
- icc.exe /Q /Ti /Gh /Gm /Gd /Wpro- /Fo"%|dpfF.obj" /C %s
-
- seh.exe: seh.obj {$(LIB)}cppwpa3.obj
- @echo " Link::Linker "
- icc.exe @<<
- /Q /B" /de /noe"
- /Feseh.exe
- $**
- <<
-
- seh.obj: \
- seh.C
-
- clean:
- - @del *.obj
- - @del *.exp
- - @del *.lib
- - @del *.dll
- - @del *.exe
- - @del *.pdb
- - @del *.map
-