2002-06-19 07:22:21 +02:00
|
|
|
# Copyright (C) 2002 John Goerzen
|
|
|
|
# <jgoerzen@complete.org>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2003-04-16 21:23:45 +02:00
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
2002-06-19 07:22:21 +02:00
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2002-07-12 08:43:07 +02:00
|
|
|
SHELL=/bin/bash
|
2002-06-19 07:22:21 +02:00
|
|
|
|
|
|
|
clean:
|
2004-06-04 22:47:21 +02:00
|
|
|
-python2.3 setup.py clean --all
|
2002-06-19 07:22:21 +02:00
|
|
|
-rm -f `find . -name "*~"`
|
2003-01-07 04:47:15 +01:00
|
|
|
-rm -f `find . -name "*.tmp"`
|
|
|
|
-rm -f bin/offlineimapc
|
2002-06-19 07:22:21 +02:00
|
|
|
-rm -f `find . -name "*.pyc"`
|
2002-06-22 06:46:25 +02:00
|
|
|
-rm -f `find . -name "*.pygc"`
|
|
|
|
-rm -f `find . -name "*.class"`
|
|
|
|
-rm -f `find . -name "*.bak"`
|
|
|
|
-rm -f `find . -name ".cache*"`
|
2003-01-09 00:03:58 +01:00
|
|
|
-rm manpage.links
|
|
|
|
-rm manpage.refs
|
2002-07-18 00:55:52 +02:00
|
|
|
-find . -name auth -exec rm -vf {}/password {}/username \;
|
2002-07-12 08:43:07 +02:00
|
|
|
|
2003-06-02 21:06:18 +02:00
|
|
|
doc:
|
2003-01-09 00:03:58 +01:00
|
|
|
docbook2man offlineimap.sgml
|
|
|
|
docbook2man offlineimap.sgml
|
|
|
|
docbook2html -u offlineimap.sgml
|
|
|
|
mv offlineimap.html manual.html
|
2002-07-12 08:43:07 +02:00
|
|
|
man -t -l offlineimap.1 > manual.ps
|
|
|
|
ps2pdf manual.ps
|
|
|
|
groff -Tascii -man offlineimap.1 | sed $$'s/.\b//g' > manual.txt
|
2003-01-09 00:03:58 +01:00
|
|
|
-rm manpage.links manpage.refs
|
|
|
|
|