#!/bin/sh
#
-# $Id: Clean.sh,v 1.11 2007/04/04 05:08:18 riastradh Exp $
+# $Id: Clean.sh,v 1.12 2007/04/29 18:01:33 cph Exp $
#
# Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
# 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
;;
esac
+if [ "${COMMAND}" != c-clean ]; then
+ echo "rm -f liarc.stamp"
+ rm -f liarc.stamp
+fi
+
if [ ${FULL} = yes ]; then
echo "rm -f lib/*.com"
rm -f lib/*.com
-# $Id: Makefile.in,v 1.31 2007/04/07 04:02:04 cph Exp $
+# $Id: Makefile.in,v 1.32 2007/04/29 18:01:39 cph Exp $
#
# Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
# 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
c: boot-compiler.com
$(srcdir)/etc/c-prepare.sh
+ -rm -f liarc.stamp
+ echo "done" > liarc.stamp
boot-compiler.com:
$(srcdir)/etc/c-boot-compiler.sh
dnl Process this file with autoconf to produce a configure script.
AC_INIT([MIT/GNU Scheme], [7.7.91], [bug-mit-scheme@gnu.org], [mit-scheme])
-AC_REVISION([$Id: configure.ac,v 1.7 2007/04/04 05:08:18 riastradh Exp $])
+AC_REVISION([$Id: configure.ac,v 1.8 2007/04/29 18:01:44 cph Exp $])
AC_CONFIG_SRCDIR([microcode/boot.c])
AC_PROG_MAKE_SET
AC_ARG_ENABLE([native-code],
AS_HELP_STRING([--enable-native-code],
[Support native compiled code if available [[yes]]]))
-: ${enable_native_code='yes'}
+if test -f liarc.stamp; then
+ : ${enable_native_code='c'}
+else
+ : ${enable_native_code='yes'}
+fi
case ${enable_native_code} in
c)
AC_PROG_INSTALL
AC_PROG_LN_S
-if test "$(${INSTALL} --help 2> /dev/null | fgrep -e --preserve-timestamps)"
+if test "`${INSTALL} --help 2> /dev/null | fgrep -e --preserve-timestamps`"
then
INSTALL="${INSTALL} --preserve-timestamps"
fi