# makefile
# Created by IBM WorkFrame/2 MakeMake at 16:05:26 on 12 June 1995
#
# The actions included in this makefile are:
#  Compile::C Set ++ Compiler
#  Link::C Set ++ Linker

.SUFFIXES: .c

.all: \
    .\client.exe

.c.obj:
    @echo Compile::C Set ++ Compiler
    icc.exe /C %s

.\client.exe: \
    .\client1.obj \
    {$(LIB)}os2386.lib \
    {$(LIB)}so32dll.lib \
    {$(LIB)}tcp32dll.lib \
    makefile
    @echo Link::C Set ++ Linker
    icc.exe @<<
     /Feclient.exe
     os2386.lib
     so32dll.lib
     tcp32dll.lib
     .\client1.obj
<<

.\client1.obj: \
    f:\edmidev\client\client1.c \
    makefile
