aboutsummaryrefslogtreecommitdiff
path: root/projects/SelfTest/makefile
blob: 0a29372c87544265176f8af6ed2f14eda02bc6f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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