all: dispfile chatter

dispfile: dispfile.c
	gcc -o $@ $<

chatter: chatter.c
	gcc -o $@ $<

.PHONY clean:
	rm -f dispfile chatter
