From 35a6dd2161123aad457ce8f654553e65cd322987 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Sun, 10 Mar 2019 06:26:31 +0100 Subject: [PATCH] Run the nano-scheme self-test as part of the build. --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 95230ef..5195e2e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all: artifacts/deps.svg artifacts/deps.png artifacts/deps.pdf artifacts/index.html artifacts/references/index.html +all: artifacts/deps.svg artifacts/deps.png artifacts/deps.pdf artifacts/index.html artifacts/references/index.html micro-scheme/test-result deps.dot: deps.sh mkdir -p $$(dirname $@) @@ -31,3 +31,7 @@ artifacts/style.css: doc-src/style.css Makefile artifacts/references/style.css: doc-src/style.css Makefile mkdir -p $$(dirname $@) cp $< $@ + +micro-scheme/test-result: micro-scheme/nano-scheme.sh Makefile + mkdir -p $$(dirname $@) + sh $< > $@