#define COMPILE cc -c -g
#define PRIMARIES bldint.c update.h update.c system.c depmod.c

#define OBJECTS update.o bldint.o macmod.o depmod.o system.o lib.o

update-> OBJECTS
	cp update update.good
	cc -g -o up.temp OBJECTS
	mv -f up.temp update

test-> test.o bldint.o lib.o macmod.o
	cc -g -o test test.o bldint.o lib.o macmod.o

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

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

gondor -> .gondor
.gondor -> PRIMARIES UPDATE
	../section1.1/tweak .gondor
	rcp YOUNGER gondor:/usr/usr/webb/597/p/update

lint->
	lint PRIMARIES ../macro/macmod.c ../section1.1/lib.c
