CC = clang++ -std=c++11 -stdlib=libc++

testSet: testSet.o
	${CC} -o testSet testSet.o

testSet.o: testSet.cpp Set.h
	${CC} -c testSet.cpp

clean:
	rm -rf *.o