From 456bbf1d3589215d5553ba2d17da4899c767b961 Mon Sep 17 00:00:00 2001 From: Wichert Akkerman Date: Wed, 21 Nov 2012 22:45:03 +0100 Subject: [PATCH] Add trivial Makefile to run tests. --- projects/SelfTest/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 projects/SelfTest/Makefile diff --git a/projects/SelfTest/Makefile b/projects/SelfTest/Makefile new file mode 100644 index 00000000..7acfc447 --- /dev/null +++ b/projects/SelfTest/Makefile @@ -0,0 +1,18 @@ +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 $@ $^ + +junit: main + ./main -r junit > junit.xml + +clean: + rm -f $(OBJECTS) main junit.xml + +.PHONY: main junit