From e4d31c172398040a6c1690a94c3859481e7c2171 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Sun, 27 Nov 2022 13:03:53 -0500 Subject: [PATCH] build: Add html-only build target for Netlify Otherwise the deploy fails due to not finding chicken-csc --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ddfb9c9..9f41ca8 100644 --- 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: -- libgit2 1.1.1