Use SCHEME_COMPILER variable to allow end-user override.
authorChris Hanson <org/chris-hanson/cph>
Tue, 29 Jan 2002 20:32:34 +0000 (20:32 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 29 Jan 2002 20:32:34 +0000 (20:32 +0000)
v7/src/microcode/makegen/Makefile.in.in

index 46686f462978398a2ac944306041cc8c29cc33bb..008277da61314d75fa0dca5c7a9364b14719d044 100644 (file)
@@ -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)