mirror of
https://git.code.sf.net/p/archivemail/code
synced 2024-12-22 07:42:55 +00:00
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
|
|
VERSION=$(shell python setup.py --version)
|
|
VERSION_TAG=v$(subst .,_,$(VERSION))
|
|
TARFILE=archivemail-$(VERSION).tar.gz
|
|
HTDOCS=htdocs-$(VERSION)
|
|
|
|
default:
|
|
@echo "no default target"
|
|
|
|
clean:
|
|
rm -f manpage.links manpage.refs manpage.log
|
|
rm -rf $(HTDOCS)
|
|
|
|
test:
|
|
python test_archivemail
|
|
|
|
clobber: clean
|
|
rm -rf build dist
|
|
rm -f $(HTDOCS).tgz
|
|
|
|
|
|
sdist: clobber doc
|
|
python setup.py sdist
|
|
|
|
# FIXME: bdist_rpm chokes on the manpage.
|
|
# This is python/distutils bug #644744
|
|
#bdist_rpm: clobber doc
|
|
# python setup.py bdist_rpm
|
|
|
|
tag:
|
|
git tag -a $(VERSION_TAG)
|
|
|
|
upload:
|
|
(cd dist && lftp -c 'open upload.sf.net && cd incoming && put $(TARFILE)')
|
|
|
|
doc: archivemail.1 archivemail.html
|
|
|
|
htdocs: $(HTDOCS).tgz
|
|
$(HTDOCS).tgz: index.html archivemail.html RELNOTES style.css manpage.css
|
|
install -d -m 775 $(HTDOCS)
|
|
install -m 664 $^ $(HTDOCS)
|
|
cd $(HTDOCS) && mv archivemail.html manpage.html
|
|
tar czf $(HTDOCS).tgz $(HTDOCS)
|
|
|
|
archivemail.1: archivemail.xml db2man.xsl
|
|
xsltproc db2man.xsl archivemail.xml
|
|
|
|
archivemail.html: archivemail.xml db2html.xsl
|
|
xsltproc --output archivemail.html \
|
|
db2html.xsl archivemail.xml
|
|
tidy -modify -indent -f /dev/null archivemail.html || true
|
|
|
|
.PHONY: clean test clobber sdist tag upload doc htdocs
|