#!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" \; @find . ! -name 'pel7*' -type f -exec sh -c "gzip -c -9 < {} > {}.gz" \;