SelfTest: refresh makefile

This commit is contained in:
Andy Sawyer 2014-09-01 17:19:59 +01:00
parent 341a9c4443
commit 000e746415

View File

@ -8,8 +8,9 @@ SOURCES = ApproxTests.cpp \
TestMain.cpp \
TrickyTests.cpp \
BDDTests.cpp \
VariadicMacrosTests.cpp \
catch_self_test.cpp
VariadicMacrosTests.cpp
OBJECTS = $(patsubst %.cpp, %.o, $(SOURCES))
CXX = g++
CXXFLAGS = -I../../include
@ -17,5 +18,9 @@ CXXFLAGS = -I../../include
CatchSelfTest: $(OBJECTS)
$(CXX) -o $@ $^
test: CatchSelfTest
./CatchSelfTest
clean:
rm -f $(OBJECTS)
rm -f $(OBJECTS) CatchSelfTest