summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..104b8ff
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+FINDARGS= \( -name "*.html" -o -name "*.xml" -o -name "*.css" -o -name "*.js" \)
+
+all:
+ rm -rf public/*
+ hugo
+ for f in `find public/ -type f $(FINDARGS)`; do \
+ echo "Compressing $$f..." ; \
+ gzip --keep --force -9 $$f ; \
+ brotli --keep --force -Z $$f ; \
+ done