From: Chris Hanson Date: Tue, 29 Jan 2002 20:32:34 +0000 (+0000) Subject: Use SCHEME_COMPILER variable to allow end-user override. X-Git-Tag: 20090517-FFI~2280 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=dd968ae7a87221341357c74c94c7a6f6d6d6eb31;p=mit-scheme.git Use SCHEME_COMPILER variable to allow end-user override. --- diff --git a/v7/src/microcode/makegen/Makefile.in.in b/v7/src/microcode/makegen/Makefile.in.in index 46686f462..008277da6 100644 --- a/v7/src/microcode/makegen/Makefile.in.in +++ b/v7/src/microcode/makegen/Makefile.in.in @@ -1,6 +1,6 @@ -# $Id: Makefile.in.in,v 1.18 2001/12/17 18:03:44 cph Exp $ +# $Id: Makefile.in.in,v 1.19 2002/01/29 20:32:34 cph Exp $ # -# Copyright (c) 2000-2001 Massachusetts Institute of Technology +# Copyright (c) 2000-2002 Massachusetts Institute of Technology # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -81,6 +81,8 @@ LINK = $(CCLD) $(CFLAGS) $(LDFLAGS) -o $@ EXPAND = $(M4) $(M4_FLAGS) ASSEMBLE = $(AS) $(AS_FLAGS) +SCHEME_COMPILER = scheme -compiler + # **** Configured files **** GC_HEAD_FILES = @GC_HEAD_FILES@ @@ -228,7 +230,7 @@ psbtobin: $(psbtobin_OBJECTS) $(psbtobin_DEPENDENCIES) $(LINK) $(psbtobin_LDFLAGS) $(psbtobin_OBJECTS) $(psbtobin_LIBS) utabmd.bin: utabmd.scm - scheme -compiler -eval '(sf "utabmd")' < /dev/null + $(SCHEME_COMPILER) -eval '(sf "utabmd")' < /dev/null prbfish.so: prbfish.o $(LINK_MODULE) $^ $(PRBFISH_LIBS) $(MODULE_LIBS)