1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-05-05 22:33:53 +00:00

14 lines
353 B
Makefile

SOURCES = ApproxTests.cpp ClassTests.cpp ConditionTests.cpp \
ExceptionTests.cpp GeneratorTests.cpp MessageTests.cpp \
MiscTests.cpp TestMain.cpp TrickyTests.cpp \
catch_self_test.cpp
OBJECTS = $(patsubst %.cpp, %.o, $(SOURCES))
CXX = gcc
CXXFLAGS = -I../../include
all: $(OBJECTS)
$(CXX) -o $@ $^
clean:
rm -f $(OBJECTS)