2013-09-30 09:01:10 +02:00
|
|
|
SOURCES = ApproxTests.cpp \
|
2014-02-20 16:49:51 +01:00
|
|
|
BDDTests.cpp \
|
2013-09-30 09:01:10 +02:00
|
|
|
ClassTests.cpp \
|
2014-02-20 16:49:51 +01:00
|
|
|
CmdLineTests.cpp \
|
2013-09-30 09:01:10 +02:00
|
|
|
ConditionTests.cpp \
|
|
|
|
ExceptionTests.cpp \
|
|
|
|
GeneratorTests.cpp \
|
|
|
|
MessageTests.cpp \
|
|
|
|
MiscTests.cpp \
|
|
|
|
TestMain.cpp \
|
|
|
|
TrickyTests.cpp \
|
2014-01-07 07:51:30 +01:00
|
|
|
VariadicMacrosTests.cpp
|
2013-09-30 09:01:10 +02:00
|
|
|
OBJECTS = $(patsubst %.cpp, %.o, $(SOURCES))
|
|
|
|
CXX = g++
|
|
|
|
CXXFLAGS = -I../../include
|
|
|
|
|
|
|
|
CatchSelfTest: $(OBJECTS)
|
|
|
|
$(CXX) -o $@ $^
|
|
|
|
|
|
|
|
clean:
|
2013-11-10 16:11:21 +01:00
|
|
|
rm -f CatchSelfTest CatchSelfTest.exe $(OBJECTS)
|