#
# comments start with a # sign
#
# each item in the make file consists of
# three things:  a product, its ingredients and how to make it
#
# gcc -o test test.c -lcurses
# CC = gcc -g -Wall


CC = g++ -g -Wall
        
testset: Utils.o testset.o bitset.o
	$(CC) Utils.o testset.o bitset.o -o testset
        
bitset.o: bitset.cpp bitset.hpp
	$(CC) -c bitset.cpp

Utils.o: Utils.cpp
	$(CC) -c Utils.cpp
	
testset.o: testset.cpp
	$(CC) -c testset.cpp