CC = cc
CFLAGS = -O2

# Linking
tester:	tester.o libcol.o
	${CC} ${CFLAGS} -o tester tester.o libcol.o
	strip tester

lib:	libcol.o

# Compiling
libcol.o:	libcol.c collector.h
		${CC} -c libcol.c

tester.o:	tester.c collector.h
		${CC} -c tester.c

# Cleanup
superclean:	clean
		rm -f tester

clean:
		rm -f *.o



