mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-17 19:22:25 +01:00
0467239505
Reviewed by @mgeier
20 lines
469 B
Makefile
20 lines
469 B
Makefile
SOURCES = ApproxTests.cpp BDDTests.cpp catch_self_test.cpp ClassTests.cpp \
|
|
CmdLineTests.cpp ConditionTests.cpp ExceptionTests.cpp GeneratorTests.cpp \
|
|
MessageTests.cpp MiscTests.cpp TestMain.cpp TrickyTests.cpp \
|
|
VariadicMacrosTests.cpp
|
|
|
|
OBJECTS = $(patsubst %.cpp, %.o, $(SOURCES))
|
|
|
|
CXXFLAGS = -I../../include
|
|
|
|
catch_self_test: $(OBJECTS)
|
|
$(CXX) -o $@ $^
|
|
|
|
clean:
|
|
$(RM) $(OBJECTS) catch_self_test
|
|
|
|
check: catch_self_test
|
|
./catch_self_test
|
|
|
|
.PHONY: clean check
|