archivemail/Makefile

55 lines
1.2 KiB
Makefile
Raw Normal View History

2006-06-27 04:44:28 +00:00
VERSION=0.6.2
VERSION_TAG=v$(subst .,_,$(VERSION))
TARFILE=archivemail-$(VERSION).tar.gz
SVNROOT=https://svn.sourceforge.net/svnroot/archivemail
default:
@echo "no default target"
clean:
rm -f *.pyc manpage.links manpage.refs manpage.log
test:
python test_archivemail.py
clobber: clean
rm -rf build dist
sdist: clobber doc
cp archivemail.py archivemail
python setup.py sdist
rm archivemail
# FIXME: bdist_rpm chokes on the manpage.
#bdist_rpm: clobber doc
# cp archivemail.py archivemail
# python setup.py bdist_rpm
# rm archivemail
tag:
# Overwriting tags at least doesn't work with svn << 1.4,
# it silently creates a new subidr. It *may* work with
# svn 1.4, I haven't tested it. See svn bug #2188.
#cvs tag -F current
@if svn list "$(SVNROOT)/tags" | grep -qx "$(VERSION_TAG)/\?"; then \
echo "Tag '$(VERSION_TAG)' already exists, aborting"; \
else \
svn copy . "$(SVNROOT)/tags/$(VERSION_TAG)"; \
fi
upload:
(cd dist && lftp -c 'open upload.sf.net && cd incoming && put $(TARFILE)')
doc: archivemail.1 archivemail.html
archivemail.1: archivemail.sgml
2002-10-03 06:27:08 +00:00
docbook2man archivemail.sgml
2002-04-12 14:57:05 +00:00
chmod 644 archivemail.1
archivemail.html: archivemail.sgml
docbook2html -u archivemail.sgml
chmod 644 archivemail.html