# makefile
# Created by IBM WorkFrame/2 MakeMake at 22:44:11 on 7 Feb 2002
#
# The actions included in this make file are:
#  Compile::C++ Compiler
#  Link::Linker

.SUFFIXES:

.SUFFIXES: \
    .cpp .obj 

.cpp.obj:
    @echo " Compile::C++ Compiler "
    icc.exe /Q /O /C %s

{E:\PROJEKTE\sc2msg}.cpp.obj:
    @echo " Compile::C++ Compiler "
    icc.exe /Q /O /C %s

all: \
    .\sc2msg.exe

.\sc2msg.exe: \
    .\sc2msg.obj \
    {$(LIB)}sc2msg.def
    @echo " Link::Linker "
    icc.exe @<<
     /Q /B" /dbgpack /exepack:2 /st:32768      /m"
     /Fesc2msg.exe 
     sc2msg.def
     .\sc2msg.obj
<<

.\sc2msg.obj: \
    E:\PROJEKTE\sc2msg\sc2msg.cpp
