home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-02-17 | 1.5 KB | 66 lines |
- #
- # Makefile for Waterloo TCP sample applications
- #
- #=================================================================
- # Modified for MSC600A - Economic Science Laboratory 01/10/92
- # University of Arizona
- # Shawn LaMaster - lamaster@ziggy.econ.arizona.edu
- # C.J. Kent - 602 793-0467 (Digital Pager)
- #=================================================================
-
- DEBUG= D # set to D for disable, E for enable
- MODEL= L # set to L for large, S for small
- IDEBUG= /Zi
- TEXTDEBUG=enabled
- CMODEL=/AL
- CLIB=..\elib\wattcplg.lib
- TEXTMODEL=large
- CFLAGS= $(CMODEL) $(IDEBUG) -I..\include
- CC= cl $(CFLAGS)
-
- #
- #
- # list of executables
- #
- #
-
- .c.exe:
- $(CC) /F 2800 $*.c $(CLIB)
-
-
- exes.arc: ping.exe daytime.exe finger.exe lpr.exe lpq.exe \
- tcpport.exe rexec.exe ntime.exe tcpinfo.exe cookie.exe
- echo done $(TEXTMODEL) make with debugging $(TEXTDEBUG)
-
- cookie.exe: cookie.c
-
- ping.exe: ping.c
- $(CC) /F 2800 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 ..\src\regpack.h
- # $(CC) tcpport.c $(CLIB)
-
- # test version of tcpport
- tcpport1.exe: tcpport1.c
- $(CC) tcpport1.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)