summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/sol2/Catch/projects/SelfTest/makefile
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/sol2/Catch/projects/SelfTest/makefile')
-rw-r--r--3rdparty/sol2/Catch/projects/SelfTest/makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/3rdparty/sol2/Catch/projects/SelfTest/makefile b/3rdparty/sol2/Catch/projects/SelfTest/makefile
deleted file mode 100644
index 0a29372c875..00000000000
--- a/3rdparty/sol2/Catch/projects/SelfTest/makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-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
-