unixpeople.org/Makefile

9 lines
360 B
Makefile
Raw Normal View History

2019-03-08 00:57:01 +01:00
all:
2024-12-23 16:51:37 +01:00
make minify
2022-09-06 04:19:58 +02:00
rsync -avr --delete --delete-excluded --exclude=_tmp/ --exclude=*.sh ./* unixpeople.org:/var/www/unixpeople.org/www/htdocs/
2019-03-08 00:57:01 +01:00
2024-12-23 16:51:37 +01:00
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 {} {} \;