Don't need to create "runtime-check" anymore; using a different
authorChris Hanson <org/chris-hanson/cph>
Thu, 7 Dec 2000 23:06:27 +0000 (23:06 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 7 Dec 2000 23:06:27 +0000 (23:06 +0000)
strategy.

v7/src/Makefile
v7/src/etc/create-dirs.sh

index cb73d33cbe5de83c7173b32408e14e5278b7b2e4..b261da7540af5dcaa2dabe796a0042bbf3440bc6 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.15 2000/12/07 22:56:18 cph Exp $
+# $Id: Makefile,v 1.16 2000/12/07 23:06:27 cph Exp $
 #
 # Copyright (c) 2000 Massachusetts Institute of Technology
 #
@@ -18,7 +18,8 @@
 
 SHELL = /bin/sh
 
-SCHEME_SUBDIRS = 6001 compiler cref edwin imail rcs runtime sf sos win32
+SCHEME_SUBDIRS = 6001 compiler cref edwin imail rcs \
+       runtime runtime-check sf sos win32
 SUBDIRS = $(SCHEME_SUBDIRS) microcode
 
 all:
@@ -51,10 +52,6 @@ mostlyclean: mostlyclean-extra
        done
 
 mostlyclean-extra:
-       @if test -d runtime-check && test -e runtime-check/Makefile; then \
-           echo "making mostlyclean in runtime-check"; \
-           ( cd runtime-check && $(MAKE) mostlyclean ); \
-       fi
 
 clean: clean-extra
        @for SUBDIR in $(SUBDIRS); do \
@@ -76,7 +73,7 @@ distclean: distclean-extra
        done
 
 distclean-extra: clean-extra
-       rm -rf runtime-check lib
+       rm -rf lib
 
 maintainer-clean: maintainer-clean-extra
        @for SUBDIR in $(SCHEME_SUBDIRS); do \
index bb7f931e5cbb19ab8cd2c7d8bca59779356dcf99..51a734deac89cbd2e725f874890f7d07791a686e 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $Id: create-dirs.sh,v 1.6 2000/12/07 22:44:57 cph Exp $
+# $Id: create-dirs.sh,v 1.7 2000/12/07 23:05:08 cph Exp $
 #
 # Copyright (c) 2000 Massachusetts Institute of Technology
 #
@@ -36,21 +36,6 @@ maybe_link ()
     fi
 }
 
-# runtime-check
-maybe_mkdir runtime-check
-maybe_link runtime-check/runtime.cbf ../etc/runtime-check.cbf
-maybe_link runtime-check/Makefile ../Makefile.std
-(
-    cd runtime
-    for FN in *.scm; do
-       FN_BIN="`basename ${FN} .scm`.bin"
-       maybe_link ../runtime-check/${FN_BIN} ../runtime/${FN_BIN}
-    done
-    for FN in runtime.bco runtime.bld; do
-       maybe_link ../runtime-check/${FN} ../runtime/${FN}
-    done
-)
-
 # lib
 maybe_mkdir lib
 maybe_link lib/SRC ..