diff options
author | Paul Rodger <paul@paulrodger.com> | 2002-04-12 14:46:09 +0000 |
---|---|---|
committer | Paul Rodger <paul@paulrodger.com> | 2002-04-12 14:46:09 +0000 |
commit | 0203bed0c46e1c890afd6910119b5264b22d101c (patch) | |
tree | 1520b399d9f9e455403b6b1ecb88ddf2bcaca386 /Makefile | |
parent | 5350fc26f6cffa11464004040cc5857b9da3479c (diff) | |
download | archivemail-0203bed0c46e1c890afd6910119b5264b22d101c.tar.gz archivemail-0203bed0c46e1c890afd6910119b5264b22d101c.tar.bz2 archivemail-0203bed0c46e1c890afd6910119b5264b22d101c.zip |
Added docbook documentation from which we can generate a manpage.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..83e416e --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ + +VERSION=0.3.1 + +default: + @echo "no default target" + +clean: + rm -f *.pyc + +clobber: clean + rm -rf build dist + +sdist: clobber + cp archivemail.py archivemail + fakeroot python setup.py sdist + rm archivemail +tag: + cvs tag -F current + cvs tag v$(VERSION) + +archivemail.1: archivemail.sgml + nsgmls archivemail.sgml | sgmlspl docbook2man-spec.pl |