CFLAGS=-ml -v
# CFLAGS=-ml
FILES=read.me spline.doc makefile spline.c zero.c spline.exe test.bat s i s3 sh

spline.exe: spline.c zero.obj
	$(CC) $(CFLAGS) spline.c zero.obj

zero.obj: zero.c
	
distrib: spline.zip
spline.zip: $(FILES)
	echo splines under tension|pkzip -zuP spline $(FILES) ok/ss*

test:
	test

clean:
	erase *.obj
	erase test\ss*
