From: Chris Hanson Date: Mon, 6 Nov 1995 10:07:20 +0000 (+0000) Subject: Patch to fix arguments to emxbind. X-Git-Tag: 20090517-FFI~5757 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=95a8ba21763f60267fa53eab2a8a5ecfe77702c6;p=mit-scheme.git Patch to fix arguments to emxbind. --- diff --git a/v7/src/microcode/os2utl/makefile.emx b/v7/src/microcode/os2utl/makefile.emx index 0649e1fab..c738793e8 100644 --- a/v7/src/microcode/os2utl/makefile.emx +++ b/v7/src/microcode/os2utl/makefile.emx @@ -1,6 +1,6 @@ ### -*- Fundamental -*- ### -### $Id: makefile.emx,v 1.6 1995/11/04 00:59:46 cph Exp $ +### $Id: makefile.emx,v 1.7 1995/11/06 10:07:20 cph Exp $ ### ### Copyright (c) 1994-95 Massachusetts Institute of Technology ### @@ -70,7 +70,7 @@ ASFLAGS = %.exe : $(CC) $(LDFLAGS) -o $(basename $@) $^ - emxbind -bq $(basename $@) + emxbind -b -q $(basename $@) del $(basename $@) include os2utl\makefile.cmn @@ -78,11 +78,11 @@ include os2utl\makefile.cmn scheme.exe : $(OBJECTS) $(SCHEME_OBJECTS) scheme.res $(CC) $(LDFLAGS) -o $(basename $@) \ $(OBJECTS) $(SCHEME_OBJECTS) $(SCHEME_LIB) - emxbind -bpq $(basename $@) -rscheme.res + emxbind -b -p -q -r$(basename $@).res $(basename $@) del $(basename $@) bchschem.exe : $(BCHOBJECTS) $(SCHEME_OBJECTS) bchschem.res $(CC) $(LDFLAGS) -o $(basename $@) \ $(OBJECTS) $(SCHEME_OBJECTS) $(SCHEME_LIB) - emxbind -bpq $(basename $@) -rbchschem.res + emxbind -b -p -q -r$(basename $@).res $(basename $@) del $(basename $@)