X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Makefile;h=c4c2827a6fe462a19178755a0473a2c7866dfcd0;hb=dcf94401c24260463049526daacfbab36d7b4615;hp=6f80b91b44f3bf127f3c80e23ab1909cfe91b379;hpb=5f3dca690aecb5ec056244e7c0c982fcc2215018;p=mimedecode.git diff --git a/Makefile b/Makefile index 6f80b91..c4c2827 100644 --- 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