musique/Makefile

72 lines
1.8 KiB
Makefile
Raw Normal View History

2022-04-24 15:27:09 +02:00
MAKEFLAGS="-j $(grep -c ^processor /proc/cpuinfo)"
2022-05-16 02:18:53 +02:00
CXXFLAGS:=$(CXXFLAGS) -std=c++20 -Wall -Wextra -Werror=switch -Werror=return-type -Werror=unused-result
2022-05-02 22:09:11 +02:00
CPPFLAGS:=$(CPPFLAGS) -Ilib/expected/ -Ilib/ut/ -Isrc/
2022-05-21 23:11:04 +02:00
RELEASE_FLAGS=-O3
DEBUG_FLAGS=-O0 -ggdb
2022-04-24 15:27:09 +02:00
2022-05-21 23:11:04 +02:00
Obj= \
environment.o \
errors.o \
interpreter.o \
lexer.o \
location.o \
number.o \
parser.o \
unicode.o \
unicode_tables.o \
value.o
Release_Obj=$(addprefix bin/,$(Obj))
Debug_Obj=$(addprefix bin/debug/,$(Obj))
2022-04-24 16:09:55 +02:00
all: bin/musique
2022-04-24 15:27:09 +02:00
2022-05-21 23:11:04 +02:00
debug: bin/debug/musique
2022-04-24 15:27:09 +02:00
bin/%.o: src/%.cc src/*.hh
2022-05-21 23:11:04 +02:00
g++ $(CXXFLAGS) $(RELEASE_FLAGS) $(CPPFLAGS) -o $@ $< -c
bin/musique: $(Release_Obj) bin/main.o src/*.hh
g++ $(CXXFLAGS) $(RELEASE_FLAGS) $(CPPFLAGS) -o $@ $(Release_Obj) bin/main.o
bin/debug/musique: $(Debug_Obj) bin/debug/main.o src/*.hh
g++ $(CXXFLAGS) $(DEBUG_FLAGS) $(CPPFLAGS) -o $@ $(Debug_Obj) bin/debug/main.o
2022-04-24 15:27:09 +02:00
2022-05-21 23:11:04 +02:00
bin/debug/%.o: src/%.cc src/*.hh
g++ $(CXXFLAGS) $(DEBUG_FLAGS) $(CPPFLAGS) -o $@ $< -c
2022-04-24 16:09:55 +02:00
.PHONY: unit-tests
unit-tests: bin/unit-tests
./$<
.PHONY: unit-test-coverage
2022-05-02 22:09:11 +02:00
unit-test-coverage:
@which gcov >/dev/null || ( echo "[ERROR] gcov is required for test coverage report"; false )
@which gcovr >/dev/null || ( echo "[ERROR] gcovr is required for test coverage report"; false )
2022-05-02 22:09:11 +02:00
CXXFLAGS=--coverage $(MAKE) bin/unit-tests -B
bin/unit-tests
rm -rf coverage
mkdir coverage
gcovr -e '.*\.hpp' --html --html-details -o coverage/index.html
2022-05-22 04:31:31 +02:00
rm -rf bin/debug
xdg-open coverage/index.html
.PHONY: doc
doc: Doxyfile src/*.cc src/*.hh
doxygen
cd doc; $(MAKE) html
2022-05-02 22:09:11 +02:00
2022-05-10 15:25:17 +02:00
.PHONY: doc-open
doc-open: doc
xdg-open ./doc/build/html/index.html
bin/unit-tests: src/tests/*.cc $(Debug_Obj)
g++ $(CXXFLAGS) $(CPPFLAGS) $(DEBUG_FLAGS) -o $@ $^
2022-04-24 15:27:09 +02:00
clean:
2022-05-02 22:12:29 +02:00
rm -rf bin coverage
2022-04-24 15:27:09 +02:00
.PHONY: clean
2022-05-21 23:11:04 +02:00
$(shell mkdir -p bin/debug)