about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-09-14 00:01:49 -0700
committerKartik Agaram <vc@akkartik.com>2019-09-14 00:01:49 -0700
commitded2b24ce28f4a9df75ce40117f0f06f09574369 (patch)
tree5eaa679c4ec147fb573fb48cdd51f2776b9381e1
parentac179d9011925bdaafdfb1cc41134e02fa8aeb6f (diff)
downloadmu-ded2b24ce28f4a9df75ce40117f0f06f09574369.tar.gz
5649
-rwxr-xr-xbuild8
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