CC=gcc
CCFLAGS=-Wall
CLEAN=rm -f

readver.o: readver.c
	$(CC) $(CCFLAGS) -c $^

clean:
	$(CLEAN) *.o
