]> git.phdru.name Git - mimedecode.git/blobdiff - Makefile
Version 2.2.1: add mk-distr helper
[mimedecode.git] / Makefile
index 6f80b91b44f3bf127f3c80e23ab1909cfe91b379..c4c2827a6fe462a19178755a0473a2c7866dfcd0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,31 +1,10 @@
 
-VERSION=$(shell python -c "from __version__ import __version__; print __version__")
-
 .PHONY: all
-all: docs sdist
-
-DISTFILES = \
-ANNOUNCE \
-INSTALL.txt \
-MANIFEST.in \
-Makefile \
-Makefile.4xslt \
-Makefile.sgmlt \
-Makefile.xsltproc \
-mimedecode.docbook \
-mimedecode.html \
-mimedecode.man \
-mimedecode.py \
-mimedecode.txt \
-mimedecode_version.py \
-setup.py
+all: distr docs
 
-.PHONY: sdist
-sdist: dist/mimedecode-$(VERSION).tar.gz
-
-.PHONY: dist
-dist/mimedecode-$(VERSION).tar.gz: $(DISTFILES)
-       umask 022 && chmod a+rX $(DISTFILES) && python setup.py sdist --formats=bztar
+.PHONY: distr
+distr:
+       ./mk-distr
 
 .PHONY: docs
 docs: mimedecode.man mimedecode.txt mimedecode.html
@@ -38,7 +17,3 @@ CLEANFILES = *.py[co] MANIFEST
 .PHONY: clean
 clean:
        rm -f $(CLEANFILES)
-
-.PHONY: distclean
-distclean: clean
-       rm -rf dist