CFLAGS = -g -DBROWN_U

phq : phq.o
	cc -o phq phq.o

install: phq
	cp phq /users/gopher/bin/

tar:
	rm -f phq.tar phq.tar.Z
	tar -cvf phq.tar Makefile phq.c CHANGES
	compress phq.tar

clean:
	rm -f core a.out *.o phq
