From aaddb3c4034999a37154232393184b15be33d2cb Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 14 Dec 2018 13:19:06 -0500 Subject: [PATCH] Added 'make full' --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 50f40197..a00a7b04 100644 --- a/Makefile +++ b/Makefile @@ -122,7 +122,7 @@ doc : # Helper rules (of interest to people hacking on this makefile) -.PHONY: clean bootstrap tags indent debug test doc +.PHONY: clean full bootstrap tags indent debug test doc $(TESTS) : %: %.scm $(CYCLONE) -I . $< @@ -187,6 +187,9 @@ libcyclone.a : runtime.o gc.o dispatch.o mstreams.o #gcc -static main.c -L. -lmean -o statically_linked #Note: the first three letters (the lib) must not be specified, as well as the suffix (.a) +full : + make clean ; make && make test && cd ../cyclone-bootstrap && make clean && ./install.sh + bootstrap : icyc libs mkdir -p $(BOOTSTRAP_DIR)/scheme/cyclone mkdir -p $(BOOTSTRAP_DIR)/srfi