-#
-# 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$
srcdir = .
+destdir = /usr/local
+libdir = $(destdir)/H-$(host_alias)/T-independent/lib
+docdir = $(srcdir)/doc
RANLIB = ranlib
-AR =
-INCDIR = $(srcdir)/../include-cygnus
-CSEARCH = -I$(INCDIR)
+AR = ar
+AR_FLAGS = clq
+INCDIR = $(srcdir)/../include
+CSEARCH = -I. -I$(INCDIR)
+DEP = mkdep
-# These things now done from host specific Makefile fragments.
-#CSWITCHES = -g # -Wall
-#CDEFINES = # -DHOST_SYS=AIX_SYS # -DCOFF_TIMESTAMP -DANSI_LIBRARIES
#### host and target dependent Makefile fragments come in here.
###
-TARG = libbfd.a
-CFLAGS = -g $(CDEFINES) $(CSEARCH) $(CSWITCHES) # -DINTEL960VERSION
+TARGETLIB = libbfd.a
+CFLAGS = -g $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) # -DINTEL960VERSION
BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \
- archures.o obstack.o
+ archures.o core.o section.o format.o syms.o reloc.o init.o
+
+BFD_MACHINES = cpu-h8300.o cpu-i960.o cpu-sparc.o cpu-m68k.o cpu-m88k.o \
+ cpu-vax.o cpu-mips.o cpu-a29k.o cpu-i386.o cpu-rs6000.o
+
+BFD_BACKENDS = oasys.o ieee.o srec.o \
+ aout64.o aout32.o demo64.o sunos.o newsos3.o i386aout.o bout.o \
+ icoff.o amdcoff.o m68kcoff.o i386coff.o m88k-bcs.o ecoff.o elf.o \
+ rs6000coff.o
+
-BFD_BACKENDS = oasys.o ieee.o srec.o sunos.o icoff.o b.out.o \
- m88k-bcs.o
+OPTIONAL_BACKENDS = trad-core.o
BFD_H=$(INCDIR)/bfd.h
-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 \
- sunos.c icoff.c b.out.c srec.c oasys.c ieee.c m88k-bcs.c
+ i386coff.c aout64.c aout32.c sunos.c demo64.c icoff.c srec.c \
+ oasys.c ieee.c m68kcoff.c amdcoff.c rs6000coff.c \
+ format.c section.c core.c syms.c reloc.c init.c \
+ m88k-bcs.c ecoff.c trad-core.c newsos3.c i386aout.c bout.c elf.c \
+ cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c cpu-m88k.c \
+ cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c cpu-rs6000.c
+
+STAGESTUFF = $(TARGETLIB) $(OFILES)
+
+all: $(TARGETLIB)
+
+# HDEPFILES comes from the host config; TDEPFILES from the target config.
+OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) $(HDEPFILES) $(TDEPFILES)
+
+$(TARGETLIB): $(OFILES)
+ rm -f $(TARGETLIB)
+ $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
+ $(RANLIB) $(TARGETLIB)
+
+stage1: force
+ - mkdir stage1
+ - mv -f $(STAGESTUFF) stage1
+
+stage2: force
+ - mkdir stage2
+ - mv -f $(STAGESTUFF) stage2
+
+stage3: force
+ - mkdir stage3
+ - mv -f $(STAGESTUFF) stage3
-all: $(TARG)
+against=stage2
-POINTOS = $(BFD_LIBS) $(BFD_BACKENDS)
+comparison: force
+ for i in *.o ; do cmp $$i $(against)/$$i || exit 1 ; done
-$(TARG): $(POINTOS)
- rm -f $(TARG)
- ar clq $(TARG) $(BFD_LIBS) $(BFD_BACKENDS)
- ranlib $(TARG)
+de-stage1: force
+ - (cd stage1 ; mv -f $(STAGESTUFF) ..)
+ - rmdir stage1
+
+de-stage2: force
+ - (cd stage2 ; mv -f $(STAGESTUFF) ..)
+ - rmdir stage2
+
+de-stage3: force
+ - (cd stage3 ; mv -f $(STAGESTUFF) ..)
+ - rmdir stage3
tags etags: TAGS
-TAGS: .force
- etags $(INCDIR)/*.h *.h *.c
+TAGS: force
+ etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
clean:
- rm -f $(BFD_LIBS) $(BFD_BACKENDS) *~ core libbfd.a
+ rm -f *.[oa] *~ core *.E *.p *.ip
clobber realclean: clean
rm -f libbfd.a TAGS
-$(BFD_LIBS) $(BFD_BACKENDS): libbfd.h $(BFD_H)
+# Mark everything as depending on config.status, since the timestamp on
+# sysdep.h might actually move backwards if we reconfig and relink it
+# to a different hosts/h-xxx.h file. This will force a recompile anyway.
+RECONFIG = config.status
+$(BFD_LIBS): libbfd.h $(BFD_H) $(RECONFIG)
+$(BFD_MACHINES): libbfd.h $(BFD_H) $(RECONFIG)
+$(BFD_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
+$(OPTIONAL_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
+
+# Get around a Sun Make bug in SunOS 4.1.1 with VPATH
+cpu-i386.o:cpu-i386.c
saber:
#suppress 65 on bfd_map_over_sections
#setopt load_flags $(CFLAGS)
#load $(CFILES)
-archive.o : archive.c libbfd.h $(BFD_H) $(SYSDEP_H)
-archures.o : archures.c $(BFD_H) $(SYSDEP_H) archures.h
-b.out.o : b.out.c libbfd.h $(BFD_H) $(SYSDEP_H) liba.out.h archures.h
-bcs88kcoff.o : bcs88kcoff.c libbfd.h $(BFD_H) $(SYSDEP_H) libcoff.h coff-code.h archures.h
-bfd.o : bfd.c libbfd.h $(BFD_H) $(SYSDEP_H)
-cache.o : cache.c libbfd.h $(BFD_H) $(SYSDEP_H)
-coff.o : coff.c
-cplus-dem.o : cplus-dem.c
-filemode.o : filemode.c
-icoff.o : icoff.c libbfd.h $(BFD_H) $(SYSDEP_H) libcoff.h coff-code.h archures.h
-libbfd.o : libbfd.c libbfd.h $(BFD_H) $(SYSDEP_H)
-misc.o : misc.c
-opncls.o : opncls.c libbfd.h $(BFD_H) $(SYSDEP_H)
-sunos.o : sunos.c libbfd.h $(BFD_H) $(SYSDEP_H) liba.out.h
-targets.o : targets.c libbfd.h $(BFD_H) $(SYSDEP_H)
#-----------------------------------------------------------------------------
# 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
# Dummy target to force execution of dependent targets.
#
-.force:
-FORCE:
+force:
install:
+ cp libbfd.a $(libdir)/libbfd.a.new
+ $(RANLIB) $(libdir)/libbfd.a.new
+ mv -f $(libdir)/libbfd.a.new $(libdir)/libbfd.a
# Target to uncomment host-specific lines in this makefile. Such lines must
# have the following string beginning in column 1: #__<hostname>__#
echo >>Makefile ; \
sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
-Makefile: $(srcdir)/Makefile.in $(srcdir)/configure
- (cd $(srcdir) ; \
- ./configure +norecurse \
- +destdir=$(destdir) \
- `if [ "$(srcdir)" != "." ] ; then echo +f; fi` \
- $(host) +target=$(target))
+Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
+ $(SHELL) ./config.status
+
+dep: $(CFILES)
+ mkdep $(CFLAGS) $?
+
+
+
+headers:
+ cp $(srcdir)/bfd-in.h $(docdir)
+ cp $(srcdir)/libbfd-in.h $(docdir)
+ cp $(srcdir)/libcoff-in.h $(docdir)
+ (cd $(docdir); $(MAKE) protos)
+ # Rebuild prototypes in bfd.h
+ cp $(docdir)/bfd.h $(BFD_H)
+ cp $(docdir)/libbfd.h $(srcdir)/libbfd.h
+ cp $(docdir)/libcoff.h $(srcdir)/libcoff.h
+ rm -f $(docdir)/bfd-in.h
+ rm -f $(docdir)/libbfd-in.h
+ rm -f $(docdir)/libcoff-in.h
+
+bfd.info:
+ ( cd $(docdir); $(MAKE) bfd.info)
+
+bfd.dvi:
+ (cd $(docdir); $(MAKE) bfd.dvi)
+
+bfd.ps:
+ (cd $(docdir); $(MAKE) bfd.ps)
+
+# What appears below is generated by a hacked mkdep using gcc -MM.
+
+# DO NOT DELETE THIS LINE -- mkdep uses it.
+# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
+
+libbfd.o : libbfd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
+opncls.o : opncls.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
+bfd.o : bfd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
+archive.o : archive.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
+ $(INCDIR)/ar.h $(INCDIR)/ranlib.h
+targets.o : targets.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
+cache.o : cache.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
+archures.o : archures.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h
+i386coff.o : i386coff.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
+ $(INCDIR)/i386coff.h $(INCDIR)/internalcoff.h libcoff.h coffcode.h
+aout64.o : aout64.c
+aout32.o : aout32.c aoutx.h $(INCDIR)/bfd.h $(INCDIR)/ansidecl.h \
+ $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout64.h \
+ $(INCDIR)/stab.gnu.h $(INCDIR)/stab.def $(INCDIR)/ar.h
+sunos.o : sunos.c aoutf1.h $(INCDIR)/bfd.h $(INCDIR)/obstack.h \
+ libaout.h libbfd.h $(INCDIR)/aout64.h $(INCDIR)/stab.gnu.h \
+ $(INCDIR)/stab.def $(INCDIR)/ar.h
+demo64.o : demo64.c
+icoff.o : icoff.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
+ $(INCDIR)/intel-coff.h $(INCDIR)/internalcoff.h libcoff.h coffcode.h
+srec.o : srec.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
+oasys.o : oasys.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
+ $(INCDIR)/oasys.h liboasys.h
+ieee.o : ieee.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
+ $(INCDIR)/ieee.h libieee.h
+m68kcoff.o : m68kcoff.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
+ $(INCDIR)/m68kcoff.h $(INCDIR)/internalcoff.h libcoff.h coffcode.h
+amdcoff.o : amdcoff.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
+ $(INCDIR)/amdcoff.h $(INCDIR)/internalcoff.h libcoff.h coffcode.h
+rs6000coff.o: rs6000coff.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
+ $(INCDIR)/rs6000coff.h $(INCDIR)/internalcoff.h libcoff.h coffcode.h
+format.o : format.c $(INCDIR)/bfd.h \
+ $(INCDIR)/obstack.h libbfd.h
+section.o : section.c $(INCDIR)/bfd.h \
+ $(INCDIR)/obstack.h libbfd.h
+core.o : core.c $(INCDIR)/bfd.h \
+ $(INCDIR)/obstack.h libbfd.h
+syms.o : syms.c $(INCDIR)/bfd.h \
+ $(INCDIR)/obstack.h libbfd.h
+reloc.o : reloc.c $(INCDIR)/bfd.h \
+ $(INCDIR)/obstack.h libbfd.h
+m88k-bcs.o : m88k-bcs.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
+ $(INCDIR)/m88k-bcs.h $(INCDIR)/internalcoff.h libcoff.h coffcode.h
+ecoff.o : ecoff.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
+ $(INCDIR)/ecoff.h $(INCDIR)/internalcoff.h libcoff.h trad-core.h \
+ coffcode.h
+trad-core.o : trad-core.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h \
+ libbfd.h libaout.h
+newsos3.o : newsos3.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
+ $(INCDIR)/aout64.h $(INCDIR)/stab.gnu.h $(INCDIR)/stab.def \
+ $(INCDIR)/ar.h libaout.h
+i386aout.o : i386aout.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
+ $(INCDIR)/aout64.h $(INCDIR)/stab.gnu.h $(INCDIR)/stab.def \
+ $(INCDIR)/ar.h libaout.h
+bout.o : bout.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
+ $(INCDIR)/bout.h $(INCDIR)/stab.gnu.h $(INCDIR)/stab.def libaout.h
+
+# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
+