-# $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
#
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:
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 \
done
distclean-extra: clean-extra
- rm -rf runtime-check lib
+ rm -rf lib
maintainer-clean: maintainer-clean-extra
@for SUBDIR in $(SCHEME_SUBDIRS); do \
#!/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
#
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 ..