]> git.phdru.name Git - mimedecode.git/blob - Makefile
Removed mimedecode1.py.
[mimedecode.git] / Makefile
1
2 all: docs sdist
3
4 DISTFILES = mimedecode.py \
5 setup.py \
6 Makefile \
7 Makefile.sgmlt \
8 Makefile.4xslt \
9 MANIFEST.in \
10 ANNOUNCE \
11 mimedecode.docbook \
12 mimedecode.html \
13 mimedecode.man \
14 mimedecode.txt
15
16 sdist: dist/mimedecode-2.1.0.tar.gz
17         touch sdist
18
19 dist/mimedecode-2.1.0.tar.gz: $(DISTFILES)
20         umask 022 && python setup.py sdist
21
22 docs: mimedecode.man mimedecode.txt mimedecode.html
23
24 include Makefile.4xslt
25
26
27 CLEANFILES = mimedecode.pyc MANIFEST sdist
28
29 clean:
30         rm -f $(CLEANFILES)
31
32 distclean: clean
33         rm -rf dist sdist