Merge branch 'selftest' of github.com:wichert/Catch into wichert-selftest

This commit is contained in:
Mateusz Loskot 2013-06-29 00:08:09 +01:00
commit 5bb05400af

View File

@ -0,0 +1,15 @@
SOURCES = ApproxTests.cpp ClassTests.cpp ConditionTests.cpp \
ExceptionTests.cpp GeneratorTests.cpp MessageTests.cpp \
MiscTests.cpp TestMain.cpp TrickyTests.cpp \
catch_self_test.cpp
OBJECTS = $(patsubst %.cpp, %.o, $(SOURCES))
CXXFLAGS = -I../../include
main: $(OBJECTS)
$(CXX) -o $@ $^
clean:
rm -f $(OBJECTS) main
.PHONY: main clean