# Stuff for make to work make magic. .PHONY: all clean deploy PAGES = index.html BLOBS = assets/ services/ all: $(PAGES) clean: rm -rf $(PAGES) deploy: $(PAGES) $(BLOBS) ./deploy.sh $^ index.html: FORCE ./index.html.sh > $@ FORCE: