# makefile
# Created by IBM WorkFrame/2 MakeMake at 12:13:03 on 6 Mar 2002
#
# The actions included in this make file are:
#  Compile::C++ Compiler
#  Link::Linker

.SUFFIXES:

.SUFFIXES: \
    .c .cpp .obj 

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

{G:\EVGEN\INET\SQDR}.cpp.obj:
    @echo " Compile::C++ Compiler "
    icc.exe /Ss /O /G5 /Gi /C %s

.c.obj:
    @echo " Compile::C++ Compiler "
    icc.exe /Ss /O /G5 /Gi /C %s

{G:\EVGEN\INET\SQDR}.c.obj:
    @echo " Compile::C++ Compiler "
    icc.exe /Ss /O /G5 /Gi /C %s

all: \
    .\sqredir.exe

.\sqredir.exe: \
    .\sgDiv.obj \
    .\sgLog.obj \
    .\getopt.obj \
    .\main.obj
    @echo " Link::Linker "
    icc.exe @<<
     /B" /exepack:2 /packd /optfunc"
     /Fesqredir.exe 
     .\sgDiv.obj
     .\sgLog.obj
     .\getopt.obj
     .\main.obj
<<

.\sgDiv.obj: \
    G:\EVGEN\INET\SQDR\sgDiv.cpp \
    {G:\EVGEN\INET\SQDR;$(INCLUDE);}sg.h

.\main.obj: \
    G:\EVGEN\INET\SQDR\main.cpp \
    {G:\EVGEN\INET\SQDR;$(INCLUDE);}sg.h \
    {G:\EVGEN\INET\SQDR;$(INCLUDE);}getopt.h \
    {G:\EVGEN\INET\SQDR;$(INCLUDE);}SQDRclient.hpp

.\getopt.obj: \
    G:\EVGEN\INET\SQDR\getopt.c \
    {G:\EVGEN\INET\SQDR;$(INCLUDE);}getopt.h

.\sgLog.obj: \
    G:\EVGEN\INET\SQDR\sgLog.cpp \
    {G:\EVGEN\INET\SQDR;$(INCLUDE);}sg.h
