From 73347f4e6674220348ec2294cde19ae25819986b Mon Sep 17 00:00:00 2001 From: Torsten Hilbrich Date: Sat, 2 Oct 2004 08:31:00 +0200 Subject: Imported version 1.8.7 from tarball fixed decoding problem when selecting dictionary (problem reported by Kuno Strassmann) --- Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) mode change 100644 => 100755 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile old mode 100644 new mode 100755 index c16bf84..db7ad5f --- a/Makefile +++ b/Makefile @@ -10,6 +10,14 @@ XEMACS-PACKAGE=$(PACKAGE)-$(VERSION)-pkg.tar.gz SOURCES=dictionary.el connection.el link.el COMPILED=dictionary.elc connection.elc link.elc +# For make dist +LISP_FILES=connection.el dictionary.el link.el lpath.el dictionary-init.el \ + install-package.el +DOC_FILES=README GPL Makefile +DEB_FILES=README.debian control copyright install.debian postinst \ + prerm remove.debian rules changelog dirs +DEB_DIR=deb + .SUFFIXES: .elc .el .el.elc: @@ -78,6 +86,20 @@ html: doc/dictionary doc/dictionary: doc/dictionary.texi cd doc && makeinfo --html dictionary +.PHONY: dist +dist: + @[ -x debian ] || ln -s deb debian; \ + VERSION=$$(dpkg-parsechangelog | perl -n -e '/^Version: (.*)-/ && print "$$1\n"'); \ + DIR=$$(mktemp -d); \ + DESTDIR="$$DIR/dictionary-$$VERSION"; \ + install -d $$DESTDIR; \ + install $(LISP_FILES) $(DOC_FILES) $$DESTDIR; \ + mkdir $$DESTDIR/$(DEB_DIR); \ + cd $(DEB_DIR) && install $(DEB_FILES) $$DESTDIR/$(DEB_DIR); \ + tar czf $(CURDIR)/dictionary-$$VERSION.tar.gz -C $$DIR .; \ + rm -r $$DIR; \ + echo "dictionary-$$VERSION.tar.gz has been created" + .PHONY: clean clean: rm -f $(XEMACS-PACKAGE) $(COMPILED) build -- cgit v1.2.3