From 9062ebe3907c1a2223bdcff48fabeafc663f8a37 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Thu, 12 Jan 2017 11:22:30 +0000 Subject: [PATCH] Removed make file (now generated from CMake) --- projects/SelfTest/makefile | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 projects/SelfTest/makefile diff --git a/projects/SelfTest/makefile b/projects/SelfTest/makefile deleted file mode 100644 index 0a29372c..00000000 --- a/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 -