@@ -20,12 +20,12 @@ dump-version:
20
20
echo ' "$(PROJECT_VERSION)"' > resources/cider/nrepl/version.edn
21
21
22
22
.inline-deps : project.clj clean
23
+ rm -f .no-mranderson
23
24
lein with-profile -user,-dev inline-deps
24
25
touch $@
25
26
26
- inline-deps : .inline-deps
27
-
28
27
test : clean .inline-deps test/resources/cider/nrepl/clojuredocs/export.edn
28
+ rm -f .no-mranderson
29
29
lein with-profile -user,-dev,+$(CLOJURE_VERSION ) ,+test,+plugin.mranderson/config test
30
30
31
31
quick-test : clean
@@ -46,28 +46,29 @@ cljfmt:
46
46
touch .no-pedantic
47
47
touch .no-mranderson
48
48
lein with-profile -user,-dev,+test,+clj-kondo,+deploy,+$(CLOJURE_VERSION ) clj-kondo --copy-configs --dependencies --lint ' $$classpath' > $@
49
- rm .no-pedantic
50
- rm .no-mranderson
49
+ rm -f .no-pedantic
50
+ rm -f .no-mranderson
51
51
52
52
kondo : .make_kondo_prep clean
53
53
touch .no-pedantic
54
54
touch .no-mranderson
55
55
lein with-profile -user,-dev,+test,+clj-kondo,+deploy,+$(CLOJURE_VERSION ) clj-kondo
56
- rm .no-pedantic
57
- rm .no-mranderson
56
+ rm -f .no-pedantic
57
+ rm -f .no-mranderson
58
58
59
59
# A variation that does not analyze the classpath, as it OOMs otherwise on CircleCI.
60
60
light-kondo : clean
61
61
touch .no-pedantic
62
62
touch .no-mranderson
63
63
lein with-profile -user,-dev,+test,+clj-kondo,+deploy,+$(CLOJURE_VERSION ) clj-kondo
64
- rm .no-pedantic
65
- rm .no-mranderson
64
+ rm -f .no-pedantic
65
+ rm -f .no-mranderson
66
66
67
67
lint : kondo cljfmt eastwood
68
68
69
69
# PROJECT_VERSION=0.37.1 make install
70
70
install : dump-version check-install-env .inline-deps
71
+ rm -f .no-mranderson
71
72
touch .no-pedantic
72
73
lein with-profile -user,-dev,+$(CLOJURE_VERSION ) ,+plugin.mranderson/config install
73
74
touch .no-pedantic
@@ -95,6 +96,7 @@ detect_timeout:
95
96
# Deployment is performed via CI by creating a git tag prefixed with "v".
96
97
# Please do not deploy locally as it skips various measures (particularly around mranderson).
97
98
deploy : check-env .inline-deps
99
+ rm -f .no-mranderson
98
100
lein with-profile -user,+$(CLOJURE_VERSION ) ,+plugin.mranderson/config deploy clojars
99
101
100
102
check-env :
0 commit comments