blob: 98a937cbee1cfe52694b0f7274d0fa594ac45417 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
PACKAGE = mgarepo
VERSION = 1.14.6 # NOTE: remember to update the version in mgarepo to match!
.PHONY: all $(DIRS) clean
clean:
# TODO
# rules to build tarball
dist: tar
tar:
git archive --prefix $(PACKAGE)-$(VERSION)/ HEAD | xz -9 > $(PACKAGE)-$(VERSION).tar.xz
|