From 00152a869b22a247263a44e6c0f09b18c266bcf0 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 7 Dec 2000 23:06:27 +0000 Subject: [PATCH] Don't need to create "runtime-check" anymore; using a different strategy. --- v7/src/Makefile | 11 ++++------- v7/src/etc/create-dirs.sh | 17 +---------------- 2 files changed, 5 insertions(+), 23 deletions(-) diff --git a/v7/src/Makefile b/v7/src/Makefile index cb73d33cb..b261da754 100644 --- a/v7/src/Makefile +++ b/v7/src/Makefile @@ -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 \ diff --git a/v7/src/etc/create-dirs.sh b/v7/src/etc/create-dirs.sh index bb7f931e5..51a734dea 100755 --- a/v7/src/etc/create-dirs.sh +++ b/v7/src/etc/create-dirs.sh @@ -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 .. -- 2.25.1