Skip to content

Commit 5d29ee2

Browse files
committed
Makefile: add release target
1 parent 0b82a38 commit 5d29ee2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ clean:
2020
rm -f seedrng
2121
rm -f ${DIST}.tar.gz
2222

23+
release:
24+
git tag -a v$(VERSION) -m v$(VERSION)
25+
2326
dist: clean
2427
git archive --format=tar.gz -o ${DIST}.tar.gz --prefix=${DIST}/ HEAD
2528

26-
.PHONY: all install uninstall clean dist
29+
.PHONY: all install uninstall clean release dist

0 commit comments

Comments
 (0)