blob: 30477a70751617e4ab858e486fd6f1ee54c0f413 (
plain)
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
|
.PHONY: all
all: report
.PHONY: binaries
binaries:
make -C bin -w binaries
.PHONY: clean cleanall
clean:
make -C bin -w clean
cleanall: clean
@echo remove all outputs and reports
@rm -rf lcov-out.info report valgrind.out 2>/dev/null || true
.PHONY: test
test: binaries
@echo -----------------------------------------
@echo -- BEGIN TEST
@echo -----------------------------------------
@scripts/run-test.sh 2>&1 | tee run-test.output
@echo -----------------------------------------
@echo -- END TEST
@echo -----------------------------------------
report: test
@echo generating report
@genhtml -s -o report lcov-out.info
@echo ready: xdg-open report/index.html
|