CC=gcc

.PHONY: all clean

all: read-foo write-foo

clean:
	rm -f *.o read-foo write-foo
