-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
48 lines (35 loc) · 976 Bytes
/
Copy pathMakefile
File metadata and controls
48 lines (35 loc) · 976 Bytes
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
.PHONY: all check docker-check docker-login smoke progress multiawk awkbox changelog
all:
clean:
rm -v scripts/*.log
check: checkvars multiawk
smoke:
@ testdir=testdata \
scripts/smoke 2> scripts/smoke.log
progress:
@ testdir=testdata \
scripts/progress-wrap \
scripts/smoke 2> scripts/progress.log
multiawk:
@ testdir=testdata \
scripts/multiawk-wrap \
scripts/progress-wrap \
scripts/smoke 2> scripts/multiawk.log
checkvars:
@ scripts/vars 2> scripts/vars.log
boxcheck: awkbox
@ docker run --rm -it -v "$(PWD):/home/user/work:rw" \
awkbox make check
boxlogin: awkbox
@ docker run --rm -it -v "$(PWD):/home/user/work:rw" \
awkbox /bin/bash
awkbox:
@ docker info >/dev/null 2>&1 || echo docker is not running >&2
@ scripts/awkbox awkbox
changelog:
@ scripts/gitlog-to-changelog \
--append-dot \
--ignore-matching="Merge branch|\\+" \
--strip-cherry-pick \
--commit-timezone > ChangeLog
# vim: set ft=make