head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	99.05.30.02.25.10;	author rwhitby;	state Exp;
branches;
next	1.1;

1.1
date	99.01.30.02.35.57;	author rwhitby;	state Exp;
branches;
next	;


desc
@@


1.2
log
@-
@
text
@#
#       Makefile for Waterloo TCP sample applications
#

DEBUG= D        # set to D for disable, E for enable
MODEL= S        # set to L for large, S for small

#
#
# auto configure section
#
#

!if '$(DEBUG)'=='E'
IDEBUG=-v
TEXTDEBUG=enabled
!elif '$(DEBUG)'=='D'
IDEBUG=-v-
TEXTDEBUG=disabled
#!else
#!error  DEBUG must be set to either E or D
!endif

!if '$(MODEL)'=='L'
CMODEL=-ml
CLIB=..\lib\wattcplg.lib
TEXTMODEL=large
!elif '$(MODEL)'=='S'
CMODEL=-ms
CLIB=..\lib\wattcpsm.lib
TEXTMODEL=small
!else
!error  MODEL must be set to either S or L
!endif

CFLAGS= $(CMODEL) -w -1 -d -f- -O -X -Z $(IDEBUG) -I..\include
CC= bcc $(CFLAGS)

#
#
#  list of executables
#
#

.c.exe:
        $(CC) $*.c $(CLIB)


all: ping.exe daytime.exe finger.exe lpr.exe lpq.exe \
     tcpport.exe rexec.exe ntime.exe tcpinfo.exe cookie.exe \
     popdump.exe ph.exe tcptalk.exe
	echo done $(TEXTMODEL) make with debugging $(TEXTDEBUG)

cookie.exe: cookie.c

popdump.exe: popdump.c

ping.exe: ping.c
        $(CC)  ping.c $(CLIB)

daytime.exe: daytime.c
        $(CC) daytime.c $(CLIB)

finger.exe: finger.c

lpr.exe: lpr.c
        $(CC)  lpr.c $(CLIB)

lpq.exe: lpq.c
        $(CC)  lpq.c $(CLIB)

tcpport.exe: tcpport.c
        $(CC)  tcpport.c $(CLIB)

rexec.exe: rexec.c
        $(CC)  rexec.c $(CLIB)

ntime.exe: ntime.c
        $(CC)  ntime.c $(CLIB)

tcpinfo.exe: tcpinfo.c
        $(CC)  tcpinfo.c $(CLIB)

ph.exe: ph.c
        $(CC)  ph.c  $(CLIB)

tcptalk.exe: tcptalk.c
        $(CC)  tcptalk.c $(CLIB)

#
# Make a fresh program. Forces recompile of everything.
#
fresh: clean all

#
# Delete everything but the source
#
clean:
    del *.obj
    del *.bak
    del *.exe
@


1.1
log
@Initial revision
@
text
@a51 1
# host.exe
a74 4
# test version of tcpport
tcpport1.exe: tcpport1.c
        $(CC)  tcpport1.c  $(CLIB)

a88 3

host.exe: host.c
        $(CC)  host.c $(CLIB)
@
