# makefile
# Created by IBM WorkFrame/2 MakeMake at 15:14:58 on 16 Jan 2007
#
# The actions included in this make file are:
#  Compile::C++ Compiler
#  Link::Linker
!IFNDEF DEBUG
!ERROR Please define Macro "DEBUG" on the commandline !
!ENDIF

!IF $(DEBUG)==1
COPTS=/Ti
LOPTS=/DE /DBGPACK
!ELSE
COPTS=/O
LOPTS=
!ENDIF

.SUFFIXES:

.SUFFIXES: \
       .cpp .obj

.cpp.obj:
       @echo " Compile::C++ Compiler "
       icc.exe /Q $(COPTS) /Gm /Gd /G5 /Ft- /C %s

{d:\projekte\spacechk}.cpp.obj:
       @echo " Compile::C++ Compiler "
       icc.exe /Q $(COPTS) /Gm /Gd /G5 /Ft- /C %s

all: \
       .\spacechk.exe

.\spacechk.exe: \
       .\spacechk.obj
       @echo " Link::Linker "
       icc.exe @<<
 /Q /B" $(LOPTS) /exepack:2 /base:0x10000 /pmtype:pm /packc:0xFFFFFFFF /packd:0xFFFFFFFF /optfunc /M"
 /Fespacechk.exe
 .\spacechk.obj
<<
       dllrname.exe /Q /N $@ CPPOM30=OS2OM30
       msgbind.exe <<
>$@
<$(CPPMAIN)\HELP\DDE4.MSG
*
<<

.\spacechk.obj: \
       d:\projekte\spacechk\spacechk.cpp
