Initial revision
authorChris Hanson <org/chris-hanson/cph>
Tue, 21 Mar 2000 05:09:28 +0000 (05:09 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 21 Mar 2000 05:09:28 +0000 (05:09 +0000)
etc/build-tree.sh [new file with mode: 0755]

diff --git a/etc/build-tree.sh b/etc/build-tree.sh
new file mode 100755 (executable)
index 0000000..e98e2ae
--- /dev/null
@@ -0,0 +1,29 @@
+#!/bin/sh
+#
+# $Id: build-tree.sh,v 1.1 2000/03/21 05:09:28 cph Exp $
+#
+# Program to finish setting up the Scheme source tree after it is
+# checked out.  Adds required links, builds TAGS files, etc.
+#
+cd v7
+for directory in 6001 cref edwin rcs runtime sf sos win32
+do
+  (cd $directory; ln -s ../Makefile.std Makefile)
+done
+for directory in 6001 compiler cref edwin rcs runtime sf sos swat win32
+do
+  (cd $directory; make TAGS)
+done
+for directory in edwin runtime sos
+do
+  (cd $directory; ln -s ed-ffi.scm .edwin-ffi)
+done
+(cd microcode; etags *.[ch])
+(cd microcode; scheme -load os2pm.scm < /dev/null)
+(cd microcode/cmpauxmd; make all)
+(cd pcsample; etags *.scm *.c)
+(cd compiler/machines/vax;
+ for n in 1 2 3
+ do
+   ln -s instr${n}.scm dinstr${n}.scm
+ done)