# Author: Brad Clements, bkc@omnigate.clarkson.edu   
# 1/28/89
# This makefile requires using the make program that comes w/ turbo C 2.0
# assumes you are using masm, not tasm. Change the -E of cflags if you want
# also assumes tlink 
#
INCLUDES = /I.. /Ic:\ptk40\include
CFLAGS= /W3 /AC /G2 /Gs /Oil /nologo ${INCLUDES}
ASFLAGS = /ML /Z /T ${INCLUDES}
CC     = cl
ASM    = masm

pcnfs.net: init.obj main.obj socket.obj error.obj
	link /nol /noi /map /noe init+main+socket+error,pcnfs.net,,c:\ptk40\msclib\ctklib;

install: pcnfs.net
	copy pcnfs.net c:\microx\lib\pcnfs.net

clean:
	rm -f *.lst *.obj *.bak

.c.asm:
	$(CC) -c $(CFLAGS) /Fs /Fa $*.c
