diff options
-rw-r--r-- | Makefile | 18 |
1 files changed, 1 insertions, 17 deletions
@@ -39,25 +39,9 @@ clean: # rules to build a distributable rpm -dist: menus checktag clean changelog +dist: menus checktag clean @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | xz > $(NAME)-$(VERSION).tar.xz; $(info $(NAME)-$(VERSION).tar.bz2 is ready) tag: checktag git tag $(TAG); \ - -.PHONY: ChangeLog log changelog - -log: ChangeLog - -changelog: ChangeLog - -ChangeLog: - @if test -d "$$PWD/.git"; then \ - ../common/gitlog-to-changelog | sed -e '/\tgit-svn-id:.*/d' > $@.tmp \ - && mv -f $@.tmp $@ \ - && git commit ChangeLog -m 'generated changelog' \ - || (rm -f $@.tmp; \ - echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \ - (test -f $@ || echo git-log is required to generate this file >> $@)); \ - fi; |