diff options
author | Paul Rodger <paul@paulrodger.com> | 2002-04-23 03:01:26 +0000 |
---|---|---|
committer | Paul Rodger <paul@paulrodger.com> | 2002-04-23 03:01:26 +0000 |
commit | 2bfde528cd269126e54cd756e4a7c4dda3b6da6e (patch) | |
tree | b1997fe29ae17d11d8d2ad3622ff2d67f30eec6e /Makefile | |
parent | 623f3ba4be671de1624af9f448c3257db5abca6c (diff) | |
download | archivemail-2bfde528cd269126e54cd756e4a7c4dda3b6da6e.tar.gz archivemail-2bfde528cd269126e54cd756e4a7c4dda3b6da6e.tar.bz2 archivemail-2bfde528cd269126e54cd756e4a7c4dda3b6da6e.zip |
Added the ability to archive messages older than a given absolute date with
the new option '--date' and fixed a bug where archivemail would complain about
messages older than 1970.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,5 +1,5 @@ -VERSION=0.4.1 +VERSION=0.4.2 VERSION_TAG=v$(subst .,_,$(VERSION)) TARFILE=archivemail-$(VERSION).tar.gz @@ -16,6 +16,7 @@ test: clobber: clean rm -rf build dist + sdist: clobber doc cp archivemail.py archivemail fakeroot python setup.py sdist @@ -24,11 +25,11 @@ tag: cvs tag -F current cvs tag $(VERSION_TAG) -doc: archivemail.1 archivemail.html - upload: (cd dist && lftp -c 'open upload.sf.net && cd incoming && put $(TARFILE)') +doc: archivemail.1 archivemail.html + archivemail.1: archivemail.sgml nsgmls archivemail.sgml | sgmlspl docbook2man-spec.pl chmod 644 archivemail.1 |