mirror of
https://git.code.sf.net/p/archivemail/code
synced 2025-02-12 10:24:28 +00:00
23 lines
364 B
Makefile
23 lines
364 B
Makefile
|
|
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
|
|
chmod 644 archivemail.1
|