From e43d4a202876d1e4f016552a81c1c606e8efe867 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Sat, 20 Apr 2013 18:37:42 +0100 Subject: [PATCH] Refactored line wrapping in Text constructor a bit --- projects/SelfTest/makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 projects/SelfTest/makefile diff --git a/projects/SelfTest/makefile b/projects/SelfTest/makefile new file mode 100644 index 00000000..02dc3084 --- /dev/null +++ b/projects/SelfTest/makefile @@ -0,0 +1,13 @@ +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)) +CXX = gcc +CXXFLAGS = -I../../include + +all: $(OBJECTS) + $(CXX) -o $@ $^ + +clean: + rm -f $(OBJECTS)