CC=gcc
CFLAGS=-g3 -Wall

testCounter: testCounter.o counter.o
	$(CC) $(CFLAGS) -o $@ $^
