Rev 207 | Blame | Last modification | View Log | RSS feed
#
# Makefile for DOS 16-bit (OpenWatcom 1.9)
#
CFLAGS = -j -ml -0 -bt=dos -wx -we -d0 -ox -dNOLFN -i=watt32\inc
LIB = watt32\lib\wattcpwl.lib
all: pkgnet.exe
pkgnet.exe: pkgnet.obj net.obj
wcl -lr -k8192 $(LIB) *.obj -fe=pkgnet.exe
pkgnet.obj: pkgnet.c
*wcc $(CFLAGS) pkgnet.c
net.obj: net.c
*wcc $(CFLAGS) net.c
clean: .symbolic
del *.obj
del pkgnet.exe