# makefile
# Created by IBM WorkFrame/2 MakeMake at 16:40:39 on 07.08.00
#
# The actions included in this make file are:
#  Compile
#  Link

.SUFFIXES:

.all: \
    .\target.exe

.\client.obj: \
    M:\Users\Porro\Rproxy\client.c
    @echo " Compile "
    icc.exe /Sp1 /O -qtune=486 /Gs /Gu /Fo".\%|fF.obj" /C M:\Users\Porro\Rproxy\client.c

.\target.exe: \
    .\client.obj \
    {$(LIB)}wsock32.lib
    @echo " Link "
    icc.exe @<<
     /B" /nodebug /nobrowse /pmtype:vio /code:RX /data:RW"
     /B" /def"
     /B" /def:wsock32.lib"
     /Fetarget.exe 
     wsock32.lib 
     .\client.obj
<<
