all:
	rsync -avr --delete --delete-excluded --exclude=_tmp/ --exclude=*.sh ./* unixpeople.org:/var/www/unixpeople.org/www/htdocs/

minify:
	find . -name "*.html" -exec minify --html-keep-document-tags --html-keep-end-tags -o {} {} \;
	find . -name "*.css" -exec minify --css-precision 0 -o {} {} \;
	find . -name "*.xml" -exec minify -o {} {} \;

