diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8d33303 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +#!Makefile + +.PHONY: build + +all: build + +build: + @find . -name '*.html' ! -name '*.gz' -type f -exec sh -c "gzip -c -9 < {} > {}.gz" \; + @find . ! -name '*.gz' -type f -exec sh -c "gzip -c -9 < {} > {}.gz" \;