# The Quoter Version .90 (c) 1996 by Stephen Jacobs <sjacob1@gl.umbc.edu>
# This file is released under the GPL.
# Please see COPYING for details.

# This Makefile isn't too fancy, but hey its a simple program right! :>

quoter: main.o quotes.o
	cc -o quoter main.o quotes.o
	strip quoter
main.o: main.c main.h
	cc -g -c main.c
quotes.o: quotes.c quotes.h
	cc -g -c quotes.c 
clean: 
	rm -f *.o
tar: quoter
	rm -f quoter-pre.93b.tar.gz
	tar -czf quoter-.93b.tar.gz COPYING .quotelist Makefile README main.c main.h quotes.c quotes.h quoter
