jes/Makefile

14 lines
287 B
Makefile

all:
./waf build --targets jes
.PHONY: clean
clean:
./waf clean
.PHONY: test
test:
./waf build --targets tests
./build/tests
@mkdir -p coverage
-@(cd build; gcovr --object-directory=src/core --root=.. -o ../coverage/index.html --html --html-details --gcov-filter='.*src#core.*')