forked from cpp-exercises-5782/coup-b
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
48 lines (36 loc) · 1.57 KB
/
Makefile
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!make -f
# This Makefile can handle any set of cpp and hpp files.
# To use it, you should put all your cpp and hpp files in the SOURCE_PATH folder.
CXX=clang++-9
CXXVERSION=c++2a
SOURCE_PATH=sources
OBJECT_PATH=objects
CXXFLAGS=-std=$(CXXVERSION) -Werror -Wsign-conversion -I$(SOURCE_PATH)
TIDY_FLAGS=-extra-arg=-std=$(CXXVERSION) -checks=bugprone-*,clang-analyzer-*,cppcoreguidelines-*,performance-*,portability-*,readability-*,-cppcoreguidelines-pro-bounds-pointer-arithmetic,-cppcoreguidelines-owning-memory --warnings-as-errors=*
VALGRIND_FLAGS=-v --leak-check=full --show-leak-kinds=all --error-exitcode=99
SOURCES=$(wildcard $(SOURCE_PATH)/*.cpp)
HEADERS=$(wildcard $(SOURCE_PATH)/*.hpp)
OBJECTS=$(subst sources/,objects/,$(subst .cpp,.o,$(SOURCES)))
run: test
test: TestRunner.o StudentTest1.o StudentTest2.o StudentTest3.o $(OBJECTS)
$(CXX) $(CXXFLAGS) $^ -o $@
%.o: %.cpp $(HEADERS)
$(CXX) $(CXXFLAGS) --compile $< -o $@
$(OBJECT_PATH)/%.o: $(SOURCE_PATH)/%.cpp $(HEADERS)
$(CXX) $(CXXFLAGS) --compile $< -o $@
# Raz Gavrieli
StudentTest1.cpp:
curl https://raw.githubusercontent.com/RazGavrieli/Board-Game-Coup/master/Test.cpp > $@
# Esther Bines
StudentTest2.cpp:
curl https://raw.githubusercontent.com/Esther-Bi/B-HW4-Test/main/Test.cpp > $@
# Benjamin Saldman
StudentTest3.cpp:
curl https://raw.githubusercontent.com/BenjaminSaldman/coup-a/main/Test.cpp > $@
tidy:
clang-tidy $(SOURCES) $(TIDY_FLAGS) --
valgrind: test
valgrind --tool=memcheck $(VALGRIND_FLAGS) ./test 2>&1 | { egrep "lost| at " || true; }
clean:
rm -f $(OBJECTS) *.o test*
rm -f StudentTest*.cpp