56 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# 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
 | 
						|
#    the Free Software Foundation; either version 2 of the License, or
 | 
						|
#    (at your option) any later version.
 | 
						|
#
 | 
						|
#    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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 | 
						|
 | 
						|
VERSION=4.0.13
 | 
						|
TARGZ=offlineimap_$(VERSION).tar.gz
 | 
						|
SHELL=/bin/bash
 | 
						|
 | 
						|
clean:
 | 
						|
	-python2.3 setup.py clean --all
 | 
						|
	-rm -f `find . -name "*~"`
 | 
						|
	-rm -f `find . -name "*.tmp"`
 | 
						|
	-rm -f bin/offlineimapc
 | 
						|
	-rm -f `find . -name "*.pyc"`
 | 
						|
	-rm -f `find . -name "*.pygc"`
 | 
						|
	-rm -f `find . -name "*.class"`
 | 
						|
	-rm -f `find . -name "*.bak"`
 | 
						|
	-rm -f `find . -name ".cache*"`
 | 
						|
	-rm manpage.links
 | 
						|
	-rm manpage.refs
 | 
						|
	-find . -name auth -exec rm -vf {}/password {}/username \;
 | 
						|
 | 
						|
doc:
 | 
						|
	docbook2man offlineimap.sgml
 | 
						|
	docbook2man offlineimap.sgml
 | 
						|
	docbook2html -u offlineimap.sgml
 | 
						|
	mv offlineimap.html manual.html
 | 
						|
	man -t -l offlineimap.1 > manual.ps
 | 
						|
	ps2pdf manual.ps
 | 
						|
	groff -Tascii -man offlineimap.1 | sed $$'s/.\b//g' > manual.txt
 | 
						|
	-rm manpage.links manpage.refs
 | 
						|
 | 
						|
targz: ../$(TARGZ)
 | 
						|
../$(TARGZ):
 | 
						|
	if ! pwd | grep -q "/offlineimap-$(VERSION)$$"; then 			\
 | 
						|
	  echo "Containing directory must be called offlineimap-$(VERSION)"; 	\
 | 
						|
	  exit 1; 								\
 | 
						|
	fi; 									\
 | 
						|
	pwd && cd .. && pwd && tar -zhcv --exclude '_darcs' -f $(TARGZ) offlineimap-$(VERSION)
 | 
						|
 | 
						|
rpm: targz
 | 
						|
	cd .. && sudo rpmbuild -ta $(TARGZ)
 |