diff options
-rwxr-xr-x | build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build b/build index 483ac49c..be481d83 100755 --- a/build +++ b/build @@ -118,7 +118,7 @@ then # simple example programs for n in `seq 1 12` do - older_than examples/ex$n examples/ex$n.subx && { + older_than examples/ex$n 049init.linux examples/ex$n.subx && { ./subx_bin translate 049init.linux examples/ex$n.subx -o examples/ex$n } done @@ -126,7 +126,7 @@ then # simple apps that use the standard library for app in factorial crenshaw2-1 crenshaw2-1b handle do - older_than apps/$app apps/$app.subx [0-9]*.subx && { + older_than apps/$app 049init.linux [0-9]*.subx && apps/$app.subx { ./subx_bin translate 049init.linux [0-9]*.subx apps/$app.subx -o apps/$app } done @@ -134,7 +134,7 @@ then # self-hosting translator for phase in hex survey pack assort dquotes tests do - older_than apps/$phase apps/$phase.subx apps/subx-common.subx [0-9]*.subx && { + older_than apps/$phase 049init.linux [0-9]*.subx apps/subx-common.subx apps/$phase.subx && { ./subx_bin translate 049init.linux [0-9]*.subx apps/subx-common.subx apps/$phase.subx -o apps/$phase } done @@ -142,7 +142,7 @@ then # higher-level syntax for phase in sigils do - older_than apps/$phase apps/$phase.subx apps/subx-common.subx [0-9]*.subx && { + older_than apps/$phase 049init.linux [0-9]*.subx apps/subx-common.subx apps/$phase.subx && { ./subx_bin translate 049init.linux [0-9]*.subx apps/subx-common.subx apps/$phase.subx -o apps/$phase } done |