We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7009e58 commit a06735dCopy full SHA for a06735d
Makefile
@@ -1,4 +1,5 @@
1
PREFIX = /usr/local
2
+VERSION = v0.1.1
3
4
build:
5
go build .
@@ -17,6 +18,23 @@ uninstall:
17
18
rm --force ${PREFIX}/bin/themr
19
rm --force ${PREFIX}/share/zsh/site-functions/_themr
20
21
+binary-release: build
22
+ tar -czf themr-${VERSION}-$(uname --machine).tar.gz themr
23
+
24
+source-release:
25
+ tar -czf themr_${VERSION}_source.tar.gz \
26
+ themr.go \
27
+ genericMap.go \
28
+ config/config.go \
29
+ go.mod \
30
+ go.sum \
31
+ _themr \
32
+ Makefile \
33
+ example_themes.yaml \
34
+ example_configs.yaml \
35
+ LICENSE \
36
+ README.md
37
38
clean:
39
rm --force themr
40
0 commit comments