diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 6fd2934..0000000 --- a/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -FINDARGS= \( -name "*.html" -o -name "*.xml" -o -name "*.css" -o -name "*.js" \) - -all: - hugo - for f in `find public/ -type f $(FINDARGS)`; do \ - echo "Compressing $$f..." ; \ - gzip --keep --force -9 $$f ; \ - brotli --keep --force -Z $$f ; \ - done - @echo "###########################################" - @echo "### If you (re)moved files, remember to ###" - @echo "#### delete them manually from public/ ####" - @echo "###########################################" |