-
-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathMakefile
More file actions
55 lines (42 loc) · 674 Bytes
/
Makefile
File metadata and controls
55 lines (42 loc) · 674 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
49
50
51
52
53
54
55
.PHONY: antq
antq:
./bin/antq
.PHONY: check
check:
clojure -M:check
.PHONY: lint
lint:
./bin/lint
.PHONY: migrate-db
migrate-db:
clojure -M:migrate-db
.PHONY: nvd-check
nvd-check:
./bin/nvd-check
.PHONY: prep-deps
prep-deps:
clojure -X:deps prep
.PHONY: repl
repl:
clj -A:dev
.PHONY: setup-dev-repo
setup-dev-repo:
clojure -M:setup-dev-repo
.PHONY: tag-release
tag-release:
clojure -T:build tag-release
.PHONY: test
test:
./bin/kaocha
.PHONY: typos
typos:
./bin/typos
.PHONY: uberjar
uberjar:
clojure -T:build uberjar
.PHONY: sync-dependabot
sync-dependabot:
./bin/sync-dependabot
.PHONY: check-dependabot
check-dependabot:
./bin/check-dependabot