93 lines
2.3 KiB
Makefile
93 lines
2.3 KiB
Makefile
MAKEFLAGS="-j $(grep -c ^processor /proc/cpuinfo)"
|
|
CXXFLAGS:=$(CXXFLAGS) -std=c++20 -Wall -Wextra -Werror=switch -Werror=return-type -Werror=unused-result
|
|
CPPFLAGS:=$(CPPFLAGS) -Ilib/expected/ -Ilib/ut/ -Ilib/midi/include -Isrc/
|
|
RELEASE_FLAGS=-O3
|
|
DEBUG_FLAGS=-O0 -ggdb
|
|
CXX=g++
|
|
|
|
LDFLAGS=-L./lib/midi/
|
|
LDLIBS=-lmidi-alsa -lasound -lreadline
|
|
|
|
Obj= \
|
|
context.o \
|
|
environment.o \
|
|
errors.o \
|
|
interpreter.o \
|
|
lexer.o \
|
|
location.o \
|
|
number.o \
|
|
parser.o \
|
|
pretty.o \
|
|
unicode.o \
|
|
unicode_tables.o \
|
|
value.o
|
|
|
|
Tests= \
|
|
context.o \
|
|
environment.o \
|
|
interpreter.o \
|
|
lex.o \
|
|
main.o \
|
|
number.o \
|
|
parser.o \
|
|
unicode.o \
|
|
value.o
|
|
|
|
Release_Obj=$(addprefix bin/,$(Obj))
|
|
Debug_Obj=$(addprefix bin/debug/,$(Obj))
|
|
Test_Obj=$(addprefix bin/debug/tests/,$(Tests))
|
|
|
|
all: bin/musique
|
|
|
|
test: unit-tests
|
|
etc/tools/test.py test examples
|
|
|
|
debug: bin/debug/musique
|
|
|
|
bin/%.o: src/%.cc src/*.hh
|
|
@echo "CXX $@"
|
|
@$(CXX) $(CXXFLAGS) $(RELEASE_FLAGS) $(CPPFLAGS) -o $@ $< -c
|
|
|
|
bin/musique: $(Release_Obj) bin/main.o src/*.hh lib/midi/libmidi-alsa.a
|
|
@echo "CXX $@"
|
|
@$(CXX) $(CXXFLAGS) $(RELEASE_FLAGS) $(CPPFLAGS) -o $@ $(Release_Obj) bin/main.o $(LDFLAGS) $(LDLIBS)
|
|
|
|
bin/debug/musique: $(Debug_Obj) bin/debug/main.o src/*.hh
|
|
@echo "CXX $@"
|
|
@$(CXX) $(CXXFLAGS) $(DEBUG_FLAGS) $(CPPFLAGS) -o $@ $(Debug_Obj) bin/debug/main.o $(LDFLAGS) $(LDLIBS)
|
|
|
|
bin/debug/%.o: src/%.cc src/*.hh
|
|
@echo "CXX $@"
|
|
@$(CXX) $(CXXFLAGS) $(DEBUG_FLAGS) $(CPPFLAGS) -o $@ $< -c
|
|
|
|
unit-tests: bin/unit-tests
|
|
./$<
|
|
|
|
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 )
|
|
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
|
|
rm -rf bin/debug
|
|
xdg-open coverage/index.html
|
|
|
|
doc: Doxyfile src/*.cc src/*.hh
|
|
doxygen
|
|
|
|
doc-open: doc
|
|
xdg-open ./doc/build/html/index.html
|
|
|
|
bin/unit-tests: $(Test_Obj) $(Debug_Obj)
|
|
@echo "CXX $@"
|
|
@$(CXX) $(CXXFLAGS) $(CPPFLAGS) $(DEBUG_FLAGS) -o $@ $^
|
|
|
|
clean:
|
|
rm -rf bin coverage
|
|
|
|
.PHONY: clean doc doc-open all test unit-tests
|
|
|
|
$(shell mkdir -p bin/debug/tests)
|