-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
75 lines (55 loc) · 1.72 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
67
68
69
70
71
72
73
74
75
# Makefile for ssh_key
.PHONY: help format test coverage doc clean
help:
@echo "Make targets:"
@echo " format format Dart code"
@echo " test run tests (unit tests and example 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'
# ssh-keygen -t rsa -b 2048 -f rsa2048
# ssh-keygen -t rsa -b 4096 -f rsa4096
# ssh-keygen -e -m rfc4716 -f rsa2048.pub > rsa2048.rfc4716
# ssh-keygen -e -m pkcs8 -f rsa2048.pub > rsa2048.pkcs8
# ssh-keygen -e -m pem -f rsa2048.pub > rsa2048.pem
#----------------------------------------------------------------
# Development
format:
dart format lib test examples
#----------------------------------------------------------------
# Testing
test: test-unit test-example
test-unit:
dart run test
test-example:
@example/tests-run.sh all
# 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
#----------------------------------------------------------------
# Publication
pana:
dart run pana
#----------------------------------------------------------------
clean:
@rm -rf "example/output" coverage doc
#EOF