From 8f33021dffb7462f5639b8f6e9fb1f63b57c96e7 Mon Sep 17 00:00:00 2001 From: crc Date: Mon, 8 Oct 2018 15:35:27 +0000 Subject: [PATCH] have build.sh regenerate sources before building full toolchain FossilOrigin-Name: c3d78f452c9aa02a7cdef14520cbd2ef52913d9d801ab6c1483f4bb00bc6b090 --- build.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index d5cb93d..5bd1c49 100755 --- a/build.sh +++ b/build.sh @@ -8,16 +8,18 @@ rm -f bin/repl rm -f bin/extend rm -f bin/muri -echo Build Toolchain -cc -O2 tools/embedimage.c -o bin/embedimage -cc -O2 tools/extend.c -o bin/extend +echo Build Unu cc -O2 tools/unu.c -o bin/unu -cc -O2 tools/muri.c -o bin/muri echo Updating Sources ./bin/unu literate/Unu.md >tools/unu.c ./bin/unu literate/Muri.md >tools/muri.c +echo Build Toolchain +cc -O2 tools/embedimage.c -o bin/embedimage +cc -O2 tools/extend.c -o bin/extend +cc -O2 tools/muri.c -o bin/muri + echo Assemble ngaImage ./bin/muri literate/Rx.md ./bin/extend literate/RetroForth.md