diff options
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r-- | bfd/Makefile.in | 37 |
1 files changed, 20 insertions, 17 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in index 29fce02a31..6f8d521035 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -1,20 +1,22 @@ -# Copyright (C) 1990, 1991 Free Software Foundation, Inc. -# -# This file is part of BFD, the Binary File Diddler. -# -# BFD is free software; you can redistribute it and/or modify +# Makefile template for Configure for the BFD library. +# Copyright (C) 1990-1991 Free Software Foundation, Inc. +# Written by Cygnus Support. +# +# This file is part of BFD, the Binary File Descriptor library. +# +# 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 -# the Free Software Foundation; either version 1, or (at your option) -# any later version. -# -# BFD is distributed in the hope that it will be useful, +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License -# along with BFD; see the file COPYING. If not, write to -# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # $Id$ @@ -38,9 +40,10 @@ CFLAGS = -g $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) # -DINTEL960VERSION BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \ archures.o core.o section.o format.o syms.o reloc.o -BFD_BACKENDS = oasys.o ieee.o srec.o aout64.o aout32.o sunos.o icoff.o \ -demo64.o amdcoff.o \ -m68kcoff.o i386coff.o m88k-bcs.o ecoff.o newsos3.o bout.o # trad-core.o +BFD_BACKENDS = oasys.o ieee.o srec.o \ + aout64.o aout32.o demo64.o sunos.o newsos3.o bout.o \ + icoff.o amdcoff.o m68kcoff.o i386coff.o m88k-bcs.o ecoff.o \ + # trad-core.o BFD_H=$(INCDIR)/bfd.h SYSDEP_H=$(INCDIR)/sysdep.h @@ -48,8 +51,8 @@ SYSDEP_H=$(INCDIR)/sysdep.h # C source files that correspond to .o's. CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c archures.c \ i386coff.c aout64.c aout32.c sunos.c demo64.c icoff.c srec.c \ -oasys.c ieee.c m68kcoff.c amdcoff.c \ -format.c section.c core.c syms.c reloc.c \ + oasys.c ieee.c m68kcoff.c amdcoff.c \ + format.c section.c core.c syms.c reloc.c \ m88k-bcs.c ecoff.c trad-core.c newsos3.c bout.c STAGESTUFF = $(TARGETLIB) $(OFILES) |