-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
66 lines (48 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Makefile for aaf_rapid_connect
.PHONY: help format test coverage doc clean
#----------------------------------------------------------------
help:
@echo "Make targets:"
@echo " format format Dart code"
@echo " test run tests"
@echo " coverage run coverage on tests *"
@echo " doc generate documentation *"
@echo " pana run pana"
@echo " clean delete generated files"
@echo
@echo '* "coverage-open" and "doc-open" to run and then open the HTML'
#----------------------------------------------------------------
# Development
format:
dart format lib test example
#----------------------------------------------------------------
# Testing
test:
dart run test
# Coverage tests require "lcov"
coverage:
@if which genhtml >/dev/null; then \
dart run coverage:test_with_coverage && \
genhtml coverage/lcov.info -o coverage/html || \
exit 1 ; \
else \
echo 'coverage: genhtml not found: please install "lcov"' ; \
echo ' on macOS install "lcov" with "brew install lcov"' ; \
exit 2 ; \
fi
coverage-open: coverage
open coverage/html/index.html
#----------------------------------------------------------------
# Documentation
doc:
dart doc
doc-open: doc
open doc/api/index.html
#----------------------------------------------------------------
# Publishing
pana:
dart run pana
#----------------------------------------------------------------
clean:
rm -rf coverage doc
#EOF