1 2 3 4 5 6 7 8 9 10 11 12
.PHONY: all deploy-site clean all: index.html deploy-site index.html: index.html.m4 README.md m4 $< > $@ deploy-site: rsync -a --exclude='.git/' . $(JACL_DEPLOY_USER)@$(JACL_DEPLOY_HOST):tailrecursion.com/JACL/ clean: rm -f index.html