]> Git Repo - binutils.git/blame - bfd/Makefile.in
comment change. This is a mips file, not 88k.
[binutils.git] / bfd / Makefile.in
CommitLineData
204ae00c
ILT
1# Makefile template for Configure for the BFD library.
2# Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
3c8a3c56
JG
3# Written by Cygnus Support.
4#
5# This file is part of BFD, the Binary File Descriptor library.
6#
7# This program is free software; you can redistribute it and/or modify
99a42820 8# it under the terms of the GNU General Public License as published by
3c8a3c56
JG
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
99a42820
RP
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
3c8a3c56 16#
99a42820 17# You should have received a copy of the GNU General Public License
3c8a3c56
JG
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
99a42820 20
99a42820 21srcdir = .
fde8212e
RP
22
23prefix = /usr/local
24
5868184b
FF
25exec_prefix = $(prefix)
26bindir = $(exec_prefix)/bin
27libdir = $(exec_prefix)/lib
28
fde8212e 29datadir = $(prefix)/lib
5868184b 30mandir = $(prefix)/man
fde8212e
RP
31man1dir = $(mandir)/man1
32man2dir = $(mandir)/man2
33man3dir = $(mandir)/man3
34man4dir = $(mandir)/man4
35man5dir = $(mandir)/man5
36man6dir = $(mandir)/man6
37man7dir = $(mandir)/man7
38man8dir = $(mandir)/man8
39man9dir = $(mandir)/man9
5868184b 40infodir = $(prefix)/info
fde8212e 41includedir = $(prefix)/include
5868184b 42oldincludedir =
fbee3571 43docdir = doc
fde8212e
RP
44
45SHELL = /bin/sh
46
47INSTALL = install -c
48INSTALL_PROGRAM = $(INSTALL)
49INSTALL_DATA = $(INSTALL)
50
1b494bfa 51AR = ar
287c221d 52AR_FLAGS = rc
6e491a87 53CFLAGS = -g
fde8212e
RP
54BISON = bison
55MAKEINFO = makeinfo
56RANLIB = ranlib
57
51300bdb
KR
58CC_FOR_BUILD = $(CC)
59
d6a554ae 60INCDIR = $(srcdir)/../include
a5220fb9 61CSEARCH = -I. -I$(srcdir) -I../include -I$(INCDIR)
a5c6b4b3 62DEP = mkdep
12e7087f 63
f259290f 64SUBDIRS = doc
12e7087f 65
99a42820 66
5176a6bc 67TARGETLIB = libbfd.a
99a42820 68
a5220fb9
KR
69# bfd.h goes here, for now
70BFD_H = ../include/bfd.h
99a42820 71
726cc6ef 72BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \
a3b3dbdd
ILT
73 archures.o core.o section.o format.o syms.o reloc.o init.o \
74 ctor.o seclet.o coffgen.o reloc16.o
63ffe5ef 75
cbdc7909 76BFD_MACHINES = cpu-h8300.o cpu-i960.o cpu-sparc.o cpu-m68k.o cpu-m88k.o \
6bb4c923 77 cpu-vax.o cpu-mips.o cpu-a29k.o cpu-i386.o cpu-rs6000.o cpu-hppa.o \
9faacb92 78 cpu-z8k.o cpu-we32k.o cpu-h8500.o cpu-alpha.o cpu-sh.o
99a42820 79
34075964 80BFD32_BACKENDS = aout32.o sunos.o newsos3.o mipsbsd.o aout-adobe.o \
51300bdb 81 i386aout.o i386bsd.o i386linux.o i386lynx.o \
156e3852 82 coff-i960.o coff-a29k.o coff-m68k.o coff-i386.o coff-m88k.o \
204ae00c
ILT
83 coff-rs6000.o coff-h8300.o coff-h8500.o coff-z8k.o coff-we32k.o \
84 coff-mips.o coff-msym.o \
75ff7895 85 elf.o \
204ae00c 86 elf32.o elf32-sparc.o elf32-i386.o elf32-i860.o elf32-m68k.o \
244ffee7 87 elf32-hppa.o elf32-mips.o elf32-m88k.o elf32-generic.o \
204ae00c 88 bout.o \
51300bdb
KR
89 hppa.o oasys.o ieee.o srec.o stab-syms.o coff-alpha.o coff-sh.o \
90 hp300hpux.o
63ffe5ef 91
34075964
PB
92BFD64_BACKENDS = \
93 aout64.o demo64.o \
94 elf64.o
95
c6e7b0ed 96OPTIONAL_BACKENDS = trad-core.o
99a42820 97
34075964
PB
98# These are defined by configure.in:
99# WORDSIZE=32
100# BFD_BACKENDS = $(BFD32_BACKENDS)
101# Change this (to MINIMIZE=1) to save space in executables.
102# Currently, all this does is control the target_vector in targets.c.
103# MINIMIZE=0
104
22e98743
SC
105#### host and target dependent Makefile fragments come in here.
106###
107
98c0c56d 108FLAGS_TO_PASS = \
287c221d
PB
109 "prefix=$(prefix)" \
110 "exec_prefix=$(exec_prefix)" \
98c0c56d
BK
111 "against=$(against)" \
112 "AR=$(AR)" \
113 "AR_FLAGS=$(AR_FLAGS)" \
114 "CC=$(CC)" \
51300bdb 115 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
98c0c56d
BK
116 "CFLAGS=$(CFLAGS)" \
117 "RANLIB=$(RANLIB)" \
118 "MAKEINFO=$(MAKEINFO)" \
119 "INSTALL=$(INSTALL)" \
120 "INSTALL_DATA=$(INSTALL_DATA)" \
121 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
122 "BISON=$(BISON)"
123
6e491a87 124.c.o:
892205bc 125 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $<
6e491a87 126
99a42820 127# C source files that correspond to .o's.
a3b3dbdd
ILT
128CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \
129 archures.c coff-i386.c aout64.c aout32.c sunos.c demo64.c \
130 coff-i960.c srec.c tekhex.c oasys.c ieee.c coff-m68k.c \
131 coff-a29k.c coff-rs6000.c coff-msym.c coffgen.c format.c \
132 section.c core.c syms.c stab-syms.c reloc.c init.c ctor.c \
51300bdb 133 seclet.c coff-m88k.c coff-mips.c coff-sh.c trad-core.c newsos3.c \
204ae00c 134 i386aout.c i386linux.c bout.c aout-adobe.c coff-we32k.c \
a3b3dbdd
ILT
135 i386bsd.c cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c \
136 cpu-m88k.c cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c \
204ae00c 137 cpu-rs6000.c coff-h8300.c hppa.c cpu-hppa.c cpu-we32k.c reloc16.c \
51300bdb 138 mipsbsd.c cpu-sh.c \
9faacb92 139 elf32.c elf32-sparc.c elf32-i386.c elf32-i860.c elf32-m68k.c \
244ffee7 140 elf32-hppa.c elf32-m88k.c elf32-mips.c elf32-generic.c \
51300bdb
KR
141 elf64.c \
142 coff-alpha.c cpu-alpha.c \
143 hp300hpux.c i386lynx.c
63ffe5ef 144
5176a6bc
RP
145STAGESTUFF = $(TARGETLIB) $(OFILES)
146
fbee3571 147all: Makefile $(TARGETLIB)
98c0c56d 148 @$(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
5176a6bc 149
30662ca6 150.NOEXPORT:
204ae00c 151MAKEOVERRIDES=
30662ca6 152
5868184b 153check:
76019c92 154installcheck:
5868184b 155
74991624 156info dvi : force
9faacb92 157 @$(MAKE) subdir_do DO=$@ "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
2090ba83 158
5868184b 159clean-info:
98c0c56d 160 @$(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
5868184b 161
2090ba83 162install-info: force
98c0c56d 163 @$(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
2090ba83 164
6a469027
JG
165# HDEPFILES comes from the host config; TDEPFILES from the target config.
166OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) $(HDEPFILES) $(TDEPFILES)
5176a6bc
RP
167
168$(TARGETLIB): $(OFILES)
169 rm -f $(TARGETLIB)
1b494bfa
RP
170 $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
171 $(RANLIB) $(TARGETLIB)
5176a6bc 172
98c0c56d
BK
173# When compiling archures.c and targets.c, supply the default target
174# info from configure.
175
176
51300bdb 177targets.o: targets.c Makefile
6cabab78 178 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $<
4a29cb1e 179
51300bdb 180archures.o: archures.c Makefile
6cabab78 181 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $<
98c0c56d 182
f259290f 183subdir_do: force
6e491a87 184 @for i in $(DODIRS); do \
5868184b
FF
185 if [ -d ./$$i ] ; then \
186 if (cd ./$$i; \
98c0c56d 187 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
f259290f
RP
188 else exit 1 ; fi ; \
189 else true ; fi ; \
190 done
191
99a42820
RP
192tags etags: TAGS
193
5176a6bc 194TAGS: force
453063fe 195 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
99a42820 196
ef2810d0
PB
197do_mostlyclean:
198 rm -f *.o *~ core *.E *.p *.ip aout-params.h gen-aout
fbee3571 199do_clean: do_mostlyclean
99a42820 200 rm -f libbfd.a TAGS
ef2810d0 201do_distclean: do_clean
0e238aa7 202 rm -f Makefile config.status sysdep.h
ef2810d0
PB
203do_realclean: do_distclean
204
205mostlyclean: do_mostlyclean
206 $(MAKE) subdir_do DO=mostlyclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
fbee3571 207clean: do_clean
ef2810d0 208 $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
0e238aa7 209distclean:
ef2810d0 210 $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
0e238aa7
PB
211 make do_distclean
212clobber realclean:
ef2810d0 213 $(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
0e238aa7 214 make do_realclean
99a42820 215
23d44ec9
JG
216# Mark everything as depending on config.status, since the timestamp on
217# sysdep.h might actually move backwards if we reconfig and relink it
218# to a different hosts/h-xxx.h file. This will force a recompile anyway.
219RECONFIG = config.status
a5220fb9
KR
220$(BFD_LIBS): libbfd.h $(BFD_H) $(RECONFIG)
221$(BFD_MACHINES): libbfd.h $(BFD_H) $(RECONFIG)
222$(BFD_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
223$(OPTIONAL_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
99a42820 224
cbdc7909
JG
225# Get around a Sun Make bug in SunOS 4.1.1 with VPATH
226cpu-i386.o:cpu-i386.c
fbee3571 227cpu-z8k.o: cpu-z8k.c
204ae00c 228cpu-h8500.o: cpu-h8500.c
fbee3571 229cpu-we32k.o: cpu-we32k.c
cbdc7909 230
99a42820
RP
231saber:
232 #suppress 65 on bfd_map_over_sections
233 #suppress 66 on bfd_map_over_sections
234 #suppress 67 on bfd_map_over_sections
235 #suppress 68 on bfd_map_over_sections
236 #suppress 69 on bfd_map_over_sections
237 #suppress 70 on bfd_map_over_sections
238 #suppress 110 in bfd_map_over_sections
239 #suppress 112 in bfd_map_over_sections
240 #suppress 530
241 #suppress 590 in swap_exec_header
242 #suppress 590 in _bfd_dummy_core_file_matches_executable_p
243 #suppress 590 in bfd_dont_truncate_arname
244 #suppress 590 on ignore
245 #suppress 590 on abfd
246 #setopt load_flags $(CFLAGS)
247 #load $(CFILES)
a5c6b4b3 248
99a42820
RP
249
250#-----------------------------------------------------------------------------
251# 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
252#
253# 'VERSION' file must be present and contain a string of the form "x.y"
254#-----------------------------------------------------------------------------
255
256ver960.c: FORCE
257 rm -f ver960.c
258 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
259
260
261# This target should be invoked before building a new release.
262# 'VERSION' file must be present and contain a string of the form "x.y"
263#
264roll:
265 @V=`cat VERSION` ; \
266 MAJ=`sed 's/\..*//' VERSION` ; \
267 MIN=`sed 's/.*\.//' VERSION` ; \
268 V=$$MAJ.`expr $$MIN + 1` ; \
269 rm -f VERSION ; \
270 echo $$V >VERSION ; \
271 echo Version $$V
272
273# Dummy target to force execution of dependent targets.
274#
5176a6bc 275force:
99a42820 276
99a42820 277install:
fde8212e
RP
278 $(INSTALL_DATA) libbfd.a $(libdir)/libbfd.a
279 $(RANLIB) $(libdir)/libbfd.a
75ff7895
DZ
280# Install BFD include file, and others that it needs. Install them
281# both in GCC's include directory, and in the system include dir
282# if configured as $(oldincludedir) -- which it usually isnt.
a5220fb9 283 $(INSTALL_DATA) $(BFD_H) $(includedir)/bfd.h
6cabab78
DZ
284 $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(includedir)/ansidecl.h
285 $(INSTALL_DATA) $(INCDIR)/obstack.h $(includedir)/obstack.h
286 -if [ -z "$(oldincludedir)" ] ; then true ; \
287 else if [ -d $(oldincludedir) ] ; then true ; \
204ae00c 288 else mkdir $(oldincludedir) ; \
6cabab78 289 fi ; \
a5220fb9 290 $(INSTALL_DATA) $(BFD_H) $(oldincludedir)/bfd.h;\
6cabab78
DZ
291 $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(oldincludedir)/ansidecl.h;\
292 $(INSTALL_DATA) $(INCDIR)/obstack.h $(oldincludedir)/obstack.h;\
293 fi
98c0c56d 294 @$(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
99a42820 295
99a42820 296
b7de6963 297Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
a26878d1 298 $(SHELL) ./config.status
a5c6b4b3
SC
299
300dep: $(CFILES)
301 mkdep $(CFLAGS) $?
6f715d66 302
5868184b 303host-aout.o: Makefile
6f715d66 304
5868184b
FF
305# The following program can be used to generate a simple config file
306# which can be folded into an h-XXX file for a new host, with some editing.
d01cd8fc
FF
307aout-params.h: gen-aout
308 ./gen-aout > aout-params.h
5868184b
FF
309gen-aout: $(srcdir)/gen-aout.c Makefile
310 $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
6f715d66 311
34075964
PB
312BFDIN_H= $(srcdir)/bfd-in2.h
313
2dce4352 314bfd.h : $(BFD_H) ; @true
a5220fb9 315$(BFD_H): stmp-bfd.h ; @true
75ff7895 316
a5220fb9
KR
317# The funny stuff here with the generated script is because I haven't
318# figured out how to get sed to generate the correct sed script. If you
319# can get it to work, portably, please let me know!
75ff7895 320stmp-bfd.h : $(BFDIN_H) Makefile
a5220fb9
KR
321 rm -f sysdep.sed nsysdep.h
322 echo "exec sed -e '/^\\$$/d' \\" > sysdep.sed
323 grep -n '#include.*hosts/' sysdep.h \
324 | sed -e 's|\([0-9]*\):.*hosts/\(.*\)"| -e "\1r $(srcdir)/hosts/\2" -e \1d \\|' \
325 >> sysdep.sed
326 echo "" >> sysdep.sed
327 sh sysdep.sed < sysdep.h > nsysdep.h
328 sed -e 's/@WORDSIZE@/$(WORDSIZE)/' \
329 -e '/INSERT SYSDEP HERE/ r nsysdep.h' < $(BFDIN_H) > bfd.h2
330 test -d ../include || mkdir ../include
331 $(srcdir)/../move-if-change bfd.h2 $(BFD_H)
75ff7895 332 touch stmp-bfd.h
34075964 333
a5220fb9 334# Could really use a "copy-if-change"...
12e7087f 335headers:
98c0c56d 336 (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS))
6bb4c923 337 cp $(docdir)/bfd.h bfd.h-new
34075964 338 $(srcdir)/../move-if-change bfd.h-new $(BFDIN_H)
6bb4c923
KR
339 cp $(docdir)/libbfd.h libbfd.h-new
340 $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
341 cp $(docdir)/libcoff.h libcoff.h-new
342 $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
12e7087f
JG
343
344bfd.info:
fbee3571 345 (cd $(docdir); $(MAKE) bfd.info $(FLAGS_TO_PASS))
12e7087f
JG
346
347bfd.dvi:
98c0c56d 348 (cd $(docdir); $(MAKE) bfd.dvi $(FLAGS_TO_PASS))
12e7087f
JG
349
350bfd.ps:
98c0c56d 351 (cd $(docdir); $(MAKE) bfd.ps $(FLAGS_TO_PASS))
12e7087f
JG
352
353# What appears below is generated by a hacked mkdep using gcc -MM.
354
355# DO NOT DELETE THIS LINE -- mkdep uses it.
356# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
357
a5220fb9
KR
358libbfd.o : libbfd.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
359opncls.o : opncls.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
360bfd.o : bfd.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
9faacb92 361 $(INCDIR)/coff/sym.h libecoff.h
a5220fb9 362archive.o : archive.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
fde8212e 363 $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h
a5220fb9
KR
364targets.o : targets.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
365cache.o : cache.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
366archures.o : archures.c $(BFD_H) $(INCDIR)/obstack.h
12e7087f 367aout64.o : aout64.c
a5220fb9 368aout32.o : aout32.c aoutx.h $(BFD_H) $(INCDIR)/ansidecl.h \
fde8212e
RP
369 $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \
370 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
a5220fb9 371sunos.o : sunos.c aoutf1.h $(BFD_H) $(INCDIR)/obstack.h \
fde8212e
RP
372 libaout.h libbfd.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
373 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
12e7087f 374demo64.o : demo64.c
3b4f1a5d 375
a5220fb9
KR
376srec.o : srec.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
377oasys.o : oasys.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
a26878d1 378 $(INCDIR)/oasys.h liboasys.h
a5220fb9 379ieee.o : ieee.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
a26878d1 380 $(INCDIR)/ieee.h libieee.h
a5220fb9 381coff-h8300.o: coff-h8300.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
a3b3dbdd
ILT
382 $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
383 coffswap.h seclet.h
a5220fb9 384coff-h8500.o: coff-h8500.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
204ae00c
ILT
385 $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
386 coffswap.h seclet.h
a5220fb9 387coff-a29k.o: coff-a29k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
a3b3dbdd
ILT
388 $(INCDIR)/coff/a29k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
389 coffswap.h seclet.h
a5220fb9 390coff-i386.o: coff-i386.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
a3b3dbdd
ILT
391 $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
392 coffswap.h seclet.h
a5220fb9 393coff-i960.o: coff-i960.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
a3b3dbdd
ILT
394 $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
395 coffswap.h seclet.h
a5220fb9 396coff-m68k.o: coff-m68k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
a3b3dbdd
ILT
397 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
398 coffswap.h seclet.h
a5220fb9 399coff-m88k.o: coff-m88k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
a3b3dbdd
ILT
400 $(INCDIR)/coff/m88k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
401 coffswap.h seclet.h
a5220fb9 402coff-mips.o: coff-mips.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
a3b3dbdd
ILT
403 $(INCDIR)/coff/mips.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
404 coffswap.h seclet.h libecoff.h
a5220fb9 405coff-rs6000.o: coff-rs6000.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
a3b3dbdd
ILT
406 $(INCDIR)/coff/rs6000.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
407 coffswap.h seclet.h
a5220fb9 408coff-z8k.o: coff-z8k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
a3b3dbdd
ILT
409 $(INCDIR)/coff/z8k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
410 coffswap.h seclet.h
a5220fb9 411coff-we32k.o: coff-we32k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
a3b3dbdd
ILT
412 $(INCDIR)/coff/we32k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
413 coffswap.h seclet.h
a5220fb9 414coffgen.o: coffgen.c $(BFD_H) libbfd.h $(INCDIR)/coff/internal.h \
a3b3dbdd 415 libcoff.h
a5220fb9 416reloc16.o: reloc16.c $(BFD_H) libbfd.h $(INCDIR)/coff/internal.h \
a3b3dbdd 417 libcoff.h seclet.h
a5220fb9 418format.o : format.c $(BFD_H) \
a26878d1 419 $(INCDIR)/obstack.h libbfd.h
a5220fb9 420section.o : section.c $(BFD_H) \
a26878d1 421 $(INCDIR)/obstack.h libbfd.h
a5220fb9 422core.o : core.c $(BFD_H) \
a26878d1 423 $(INCDIR)/obstack.h libbfd.h
a5220fb9 424syms.o : syms.c $(BFD_H) \
a26878d1 425 $(INCDIR)/obstack.h libbfd.h
7de245d3 426syms.o : stab-syms.c
a5220fb9 427reloc.o : reloc.c $(BFD_H) \
a26878d1 428 $(INCDIR)/obstack.h libbfd.h
3b4f1a5d 429
a5220fb9 430trad-core.o : trad-core.c $(BFD_H) $(INCDIR)/obstack.h \
12e7087f 431 libbfd.h libaout.h
5868184b 432
a5220fb9 433coff-msym.o: coff-msym.c $(BFD_H) $(INCDIR)/coff/ecoff-ext.h \
5868184b
FF
434 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h
435
a5220fb9 436newsos3.o : newsos3.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
fde8212e
RP
437 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
438 $(INCDIR)/aout/ar.h libaout.h
a5220fb9 439i386lynx.o : i386lynx.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
51300bdb
KR
440 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
441 $(INCDIR)/aout/ar.h libaout.h
a5220fb9 442i386aout.o : i386aout.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
fde8212e
RP
443 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
444 $(INCDIR)/aout/ar.h libaout.h
a5220fb9 445i386linux.o : i386linux.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
6bb4c923
KR
446 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
447 $(INCDIR)/aout/ar.h libaout.h
a5220fb9 448i386bsd.o : i386bsd.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
fbee3571
ME
449 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
450 $(INCDIR)/aout/ar.h libaout.h
a5220fb9 451bout.o : bout.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
6bb4c923 452 $(INCDIR)/bout.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h
a5220fb9 453mipsbsd.o : mipsbsd.c $(BFD_H) $(INCDIR)/obstack.h \
204ae00c 454 libbfd.h libaout.h
a5220fb9
KR
455elf.o : $(BFD_H) $(INCDIR)/obstack.h
456elf32.o : elf32.c elfcode.h libelf.h libbfd.h $(BFD_H) \
51300bdb 457 $(INCDIR)/obstack.h
a5220fb9 458elf32-sparc.o : elf32-sparc.c libelf.h libbfd.h $(BFD_H) \
204ae00c 459 $(INCDIR)/obstack.h
a5220fb9 460elf32-m68k.o : elf32-m68k.c libelf.h libbfd.h $(BFD_H) \
204ae00c 461 $(INCDIR)/obstack.h
a5220fb9 462elf32-i860.o : elf32-i860.c libelf.h libbfd.h $(BFD_H) \
204ae00c 463 $(INCDIR)/obstack.h
a5220fb9 464elf32-i386.o : elf32-i386.c libelf.h libbfd.h $(BFD_H) \
204ae00c 465 $(INCDIR)/obstack.h
51300bdb 466elf32-hppa.o : elf32-hppa.c $(srcdir)/elf32-hppa.h libelf.h libbfd.h \
a5220fb9 467 $(BFD_H) $(INCDIR)/obstack.h
244ffee7 468elf32-m88k.o : elf32-m88k.c libelf.h libbfd.h \
2c4f2c72 469 $(BFD_H) $(INCDIR)/obstack.h
244ffee7
JK
470elf32-mips.o : elf32-mips.c libelf.h libbfd.h \
471 $(BFD_H) $(INCDIR)/obstack.h
472elf32-generic.o : elf32-generic.c libelf.h libbfd.h \
2c4f2c72 473 $(BFD_H) $(INCDIR)/obstack.h
a5220fb9 474elf64.o : elf64.c elfcode.h libelf.h libbfd.h $(BFD_H) \
51300bdb 475 $(INCDIR)/obstack.h
6bb4c923 476
12e7087f 477# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
a26878d1 478
This page took 0.237831 seconds and 4 git commands to generate.