From e61285ba3371af90ca89cfb2666613ff10d4c007 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Sat, 5 Aug 2000 02:35:50 +0000 Subject: [PATCH] (MZC): New var. (mzscheme): Use `MZC'. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@624 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/Makefile.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Examples/Makefile.in b/Examples/Makefile.in index 0123dcc7f..123628f64 100644 --- a/Examples/Makefile.in +++ b/Examples/Makefile.in @@ -332,10 +332,12 @@ java_cpp: $(SRCS) # Build a C dynamically loadable module # ---------------------------------------------------------------- +MZC = test -n "@MZC@" && @MZC@ + mzscheme: $(SRCS) $(SWIG) -mzscheme $(SWIGOPT) $(INTERFACE) - mzc --cc $(ISRCS) $(SRCS) - mzc --ld $(TARGET)$(SO) $(OBJS) $(IOBJS) + $(MZC) --cc $(ISRCS) $(SRCS) + $(MZC) --ld $(TARGET)$(SO) $(OBJS) $(IOBJS) ################################################################## ##### RUBY ######