reader: reader.o
	gcc -g -o reader reader.o

reader.o: reader.c
	gcc -g -c reader.c

clean:
	rm -f reader
	rm -f *~
	rm -f *.o
