# a very simple makefile
CC=gcc 
CFLAGS=-Wall -Wstrict-prototypes
test: test.o comprot.o

clean:
	rm -f test *.o test.o comprot.o

