mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-08 23:29:53 +01:00
Merge pull request #350 from jamiebullock/master
More generic and maintainable makefile for SelfTest
This commit is contained in:
commit
694c4d7a59
@ -1,21 +1,14 @@
|
|||||||
SOURCES = ApproxTests.cpp \
|
|
||||||
ClassTests.cpp \
|
|
||||||
ConditionTests.cpp \
|
|
||||||
ExceptionTests.cpp \
|
|
||||||
GeneratorTests.cpp \
|
|
||||||
MessageTests.cpp \
|
|
||||||
MiscTests.cpp \
|
|
||||||
TestMain.cpp \
|
|
||||||
TrickyTests.cpp \
|
|
||||||
BDDTests.cpp \
|
|
||||||
VariadicMacrosTests.cpp \
|
|
||||||
catch_self_test.cpp
|
|
||||||
OBJECTS = $(patsubst %.cpp, %.o, $(SOURCES))
|
|
||||||
CXX = g++
|
|
||||||
CXXFLAGS = -I../../include
|
|
||||||
|
|
||||||
CatchSelfTest: $(OBJECTS)
|
EXEC=CatchSelfTest
|
||||||
|
SOURCES = $(wildcard *.cpp)
|
||||||
|
OBJECTS = $(SOURCES:.cpp=.o)
|
||||||
|
|
||||||
|
CXX = g++
|
||||||
|
CXXFLAGS = -I../../include -I../../include/internal
|
||||||
|
|
||||||
|
$(EXEC): $(OBJECTS)
|
||||||
$(CXX) -o $@ $^
|
$(CXX) -o $@ $^
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(OBJECTS)
|
$(RM) $(OBJECTS)
|
||||||
|
$(RM) $(EXEC)
|
||||||
|
Loading…
Reference in New Issue
Block a user