Skip to content

Commit e9f66b7

Browse files
committed
Add make install command
1 parent 98b805b commit e9f66b7

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Makefile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22

33
VERSION ?= 1.10
44

5-
.inline-deps:
6-
git clean -fdx
5+
clean:
6+
lein clean
7+
rm -f .inline-deps
8+
9+
.inline-deps: clean
710
lein with-profile -user,+$(VERSION) inline-deps
811
touch .inline-deps
912

@@ -37,6 +40,5 @@ release:
3740
deploy: .inline-deps
3841
lein with-profile -user,+$(VERSION),+plugin.mranderson/config,+lein-plugin deploy clojars
3942

40-
clean:
41-
lein clean
42-
rm -f .inline-deps
43+
install: .inline-deps
44+
lein with-profile -user,+$(VERSION),+plugin.mranderson/config,+lein-plugin install

0 commit comments

Comments
 (0)