aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile18
1 files changed, 1 insertions, 17 deletions
diff --git a/Makefile b/Makefile
index ae9072d..e8618e9 100644
--- a/Makefile
+++ b/Makefile
@@ -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;