* configure.in: Set and substitute HLDENV.
* configure: Rebuild. * Makefile.in (HLDENV): New variable. (as.new): Use $(HLDENV).
This commit is contained in:
parent
b69f18f103
commit
8ee90d359b
2 changed files with 9 additions and 8 deletions
|
@ -1,5 +1,10 @@
|
|||
Thu Aug 22 10:20:30 1996 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* configure.in: Set and substitute HLDENV.
|
||||
* configure: Rebuild.
|
||||
* Makefile.in (HLDENV): New variable.
|
||||
(as.new): Use $(HLDENV).
|
||||
|
||||
* ecoff.c (ecoff_directive_endef): Avoid a division by zero error
|
||||
if an array dimension is not known.
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ man9dir = $(mandir)/man9
|
|||
infodir = @infodir@
|
||||
includedir = @includedir@
|
||||
|
||||
VERSION=cygnus-2.6
|
||||
VERSION=cygnus-2.7.1
|
||||
|
||||
SHELL = /bin/sh
|
||||
|
||||
|
@ -75,6 +75,7 @@ CC = @CC@
|
|||
CFLAGS = -g
|
||||
LDFLAGS =
|
||||
HLDFLAGS = @HLDFLAGS@
|
||||
HLDENV = @HLDENV@
|
||||
RPATH_ENVVAR = @RPATH_ENVVAR@
|
||||
|
||||
MAKEOVERRIDES=
|
||||
|
@ -254,7 +255,7 @@ STAGESTUFF = *.o as.new gasp.new
|
|||
$(OBJS): @ALL_OBJ_DEPS@
|
||||
|
||||
as.new: $(OBJS) $(LIBDEPS)
|
||||
$(CC) $(HLDFLAGS) $(ALL_CFLAGS) $(LDFLAGS) -o as.new $(OBJS) $(LIBS) $(LOADLIBES)
|
||||
$(HLDENV) $(CC) $(HLDFLAGS) $(ALL_CFLAGS) $(LDFLAGS) -o as.new $(OBJS) $(LIBS) $(LOADLIBES)
|
||||
|
||||
$(OBJS): config.h as.h targ-env.h obj-format.h targ-cpu.h flonum.h expr.h \
|
||||
struc-symbol.h write.h frags.h hash.h read.h symbols.h tc.h obj.h \
|
||||
|
@ -312,12 +313,7 @@ check: site.exp
|
|||
$(RUNTEST) --tool gas --srcdir $${srcdir}/testsuite $(RUNTESTFLAGS)
|
||||
|
||||
config.status: configure
|
||||
if [ -r config.status ]; then \
|
||||
sh ./config.status --recheck ; \
|
||||
else \
|
||||
echo You must configure gas. Look at the INSTALL file for details. ; \
|
||||
exit 1 ; \
|
||||
fi
|
||||
$(SHELL) config.status --recheck
|
||||
|
||||
config.h: config-stamp ; @true
|
||||
config-stamp: Makefile conf
|
||||
|
|
Loading…
Reference in a new issue