unixpeople.org/Makefile
2024-12-23 16:51:37 +01:00

9 lines
360 B
Makefile

all:
make minify
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 {} {} \;