aboutsummaryrefslogtreecommitdiff
path: root/projects/SelfTest/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'projects/SelfTest/makefile')
-rw-r--r--projects/SelfTest/makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/projects/SelfTest/makefile b/projects/SelfTest/makefile
new file mode 100644
index 0000000..0a29372
--- /dev/null
+++ b/projects/SelfTest/makefile
@@ -0,0 +1,30 @@
+SOURCES = ApproxTests.cpp \
+ ClassTests.cpp \
+ ConditionTests.cpp \
+ ExceptionTests.cpp \
+ GeneratorTests.cpp \
+ MessageTests.cpp \
+ MiscTests.cpp \
+ TestMain.cpp \
+ TrickyTests.cpp \
+ BDDTests.cpp \
+ VariadicMacrosTests.cpp \
+ EnumToString.cpp \
+ ToStringPair.cpp \
+ ToStringVector.cpp \
+ ToStringWhich.cpp
+
+
+OBJECTS = $(patsubst %.cpp, %.o, $(SOURCES))
+CXX = g++
+CXXFLAGS = -I../../include -std=c++11
+
+CatchSelfTest: $(OBJECTS)
+ $(CXX) -o $@ $^
+
+test: CatchSelfTest
+ ./CatchSelfTest
+
+clean:
+ rm -f $(OBJECTS) CatchSelfTest
+