/* This is the dependency description file for fcomp.*/
#define PRIMARIES fcomp.c
#define OBJECTS fcomp.o
#define ALL OBJECTS lib.o

fcomp -> ALL
	cc ALL -o fcomp

print -> .print
.print -> PRIMARIES
	../section1.1/tweak .print
	igrind YOUNGER &

test -> fcomp
	fcomp long1 long2 >results
	diff results answers
	rm results

slides ->
	../MAKE.SLIDES PRIMARIES > TEMP
	cat TEMP | sed -f ../SCR > temp
	vtroff -mtr temp
	rm temp TEMP

lint ->
	lint fcomp.c lib.c
