From a92ed1ac7f533587920180183ee2eac7aa87dda4 Mon Sep 17 00:00:00 2001 From: Koichi Nakamura Date: Thu, 6 May 2021 00:11:38 +0900 Subject: [PATCH] Add `test` target to Makefile --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 733c9fe..4704cb8 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,9 @@ python: others/planck.py cp others/planck.py planck chmod +x planck -.PHONY: clean +.PHONY: clean test clean: rm -f planck + +test: planck bootstrap.fs runtests.fs + ./planck < bootstrap.fs runtests.fs