From: JF Ding Date: Fri, 16 Sep 2011 02:38:10 +0000 (+0900) Subject: Makefile: make dist to remember the git commit id X-Git-Tag: 0.1~108 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e572d42bfbf3cb5c6bde01ed6ee15dec3cee75a;p=tools%2Fmic.git Makefile: make dist to remember the git commit id --- diff --git a/Makefile b/Makefile index 719293c..e3e5292 100644 --- a/Makefile +++ b/Makefile @@ -17,13 +17,17 @@ endif all: $(PYTHON) setup.py build -dist-bz2: - git archive --format=tar --prefix=$(PKGNAME)-$(TAGVER)/ $(TAG) | \ - bzip2 > $(PKGNAME)-$(TAGVER).tar.bz2 +dist-common: + git archive --format=tar --prefix=$(PKGNAME)-$(TAGVER)/ $(TAG) | tar xpf - + git show $(TAG) --oneline | head -1 > $(PKGNAME)-$(TAGVER)/commit-id -dist-gz: - git archive --format=tar --prefix=$(PKGNAME)-$(TAGVER)/ $(TAG) | \ - gzip > $(PKGNAME)-$(TAGVER).tar.gz +dist-bz2: dist-common + tar jcpf $(PKGNAME)-$(TAGVER).tar.bz2 $(PKGNAME)-$(TAGVER) + rm -rf $(PKGNAME)-$(TAGVER) + +dist-gz: dist-common + tar zcpf $(PKGNAME)-$(TAGVER).tar.gz $(PKGNAME)-$(TAGVER) + rm -rf $(PKGNAME)-$(TAGVER) install: all $(PYTHON) setup.py install --prefix=$(DESTDIR)/$(PREFIX)