* Makefile.in: Format variable definitions consistently.

(LD_PROG): Remove unnecessary variables from link command,
	change variable LOADLIBES to EXTRALIBS.
This commit is contained in:
Stan Shebs
1994-01-26 04:24:30 +00:00
parent 747a47f2be
commit 74e6b793b8
2 changed files with 25 additions and 20 deletions

View File

@ -1,5 +1,9 @@
Tue Jan 25 13:19:41 1994 Stan Shebs (shebs@andros.cygnus.com) Tue Jan 25 13:19:41 1994 Stan Shebs (shebs@andros.cygnus.com)
* Makefile.in: Format variable definitions consistently.
(LD_PROG): Remove unnecessary variables from link command,
change variable LOADLIBES to EXTRALIBS.
* ldmain.c (main): Compute and display total execution time. * ldmain.c (main): Compute and display total execution time.
* ld.texinfo (-stats): Document the option. * ld.texinfo (-stats): Document the option.

View File

@ -1,5 +1,5 @@
# Makefile for the GNU linker ld (version 2) # Makefile for the GNU linker ld (version 2)
# Copyright (C) 1989,1990,1991,1992,1993 Free Software Foundation, Inc. # Copyright (C) 1989, 90, 91, 92, 93, 1994 Free Software Foundation, Inc.
# This file is part of GNU ld.. # This file is part of GNU ld..
@ -182,6 +182,7 @@ CFILES= ldctor.c ldemul.c ldexp.c ldfile.c ldlang.c \
ldmain.c ldmisc.c ldver.c ldwrite.c lexsup.c \ ldmain.c ldmisc.c ldver.c ldwrite.c lexsup.c \
mri.c mri.c
HFILES = config.h ld.h ldctor.h ldemul.h ldexp.h ldfile.h \ HFILES = config.h ld.h ldctor.h ldemul.h ldexp.h ldfile.h \
ldlang.h ldlex.h ldmain.h ldmisc.h ldver.h \ ldlang.h ldlex.h ldmain.h ldmisc.h ldver.h \
ldwrite.h mri.h ldwrite.h mri.h
@ -365,7 +366,7 @@ em_coff_sparc.c: $(srcdir)/emulparams/coff_sparc.sh \
${GENSCRIPTS} coff_sparc ${GENSCRIPTS} coff_sparc
$(LD_PROG): $(OFILES) $(BFDLIB) $(LIBIBERTY) $(LD_PROG): $(OFILES) $(BFDLIB) $(LIBIBERTY)
$(CC) $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CDEFINES) $(CFLAGS) $(LDFLAGS) -o $(LD_PROG) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(LOADLIBES) $(CC) $(CFLAGS) $(LDFLAGS) -o $(LD_PROG) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(EXTRALIBS)
# The generated emulation files mostly have the same dependencies. # The generated emulation files mostly have the same dependencies.
$(EMULATION_OFILES): ../bfd/bfd.h ../bfd/sysdep.h $(INCDIR)/bfdlink.h \ $(EMULATION_OFILES): ../bfd/bfd.h ../bfd/sysdep.h $(INCDIR)/bfdlink.h \