commit e4d31c172398040a6c1690a94c3859481e7c2171 (patch) parent 25261ca576e8a683114955db49360f126ad750d9 Author: Alex Karle <alex@alexkarle.com> Date: Sun, 27 Nov 2022 13:03:53 -0500 build: Add html-only build target for Netlify Otherwise the deploy fails due to not finding chicken-csc Diffstat:
M | Makefile | | | 7 | ++++++- |
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -2,7 +2,12 @@ HTML != for f in *.tmpl; do echo $$(basename $$f tmpl)html; done SCHEME != find . -name '*.scm' .PHONY: build -build: $(HTML) rsvp +build: build-html rsvp + + +# Standalone target for Netlify, which doesn't have chicken-csc +.PHONY: build-html +build-html: $(HTML) .PHONY: clean clean: