* elf32-mips.c: Extensive additions to do relocations and to
[deliverable/binutils-gdb.git] / bfd / Makefile.in
... / ...
CommitLineData
1# Makefile template for Configure for the BFD library.
2# Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
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
8# it under the terms of the GNU General Public License as published by
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,
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.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21srcdir = .
22
23prefix = /usr/local
24
25exec_prefix = $(prefix)
26bindir = $(exec_prefix)/bin
27libdir = $(exec_prefix)/lib
28
29datadir = $(prefix)/lib
30mandir = $(prefix)/man
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
40infodir = $(prefix)/info
41includedir = $(prefix)/include
42oldincludedir =
43docdir = doc
44
45SHELL = /bin/sh
46
47INSTALL = install -c
48INSTALL_PROGRAM = $(INSTALL)
49INSTALL_DATA = $(INSTALL)
50
51AR = ar
52AR_FLAGS = rc
53CFLAGS = -g
54BISON = bison
55MAKEINFO = makeinfo
56RANLIB = ranlib
57
58CC_FOR_BUILD = $(CC)
59
60INCDIR = $(srcdir)/../include
61CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
62DEP = mkdep
63
64SUBDIRS = doc
65
66
67TARGETLIB = libbfd.a
68
69# bfd.h goes here, for now
70BFD_H = bfd.h
71
72# Some of these files should be in BFD*_BACKENDS below, but some programs
73# won't link without them. So, in order for some of the minimal-bfd
74# hacks to work, they're also included here for now.
75# gdb: ecoff.o elf.o
76# objdump: elf.o
77#
78# Also, Jim Kingdon notes:
79# Writing S-records should be included in all (or at least most)
80# *-*-coff, *-*-aout, etc., configurations, because people will want to
81# be able to use objcopy to create S-records. (S-records are not useful
82# for the debugger, so if you are downloading things as S-records you
83# need two copies of the executable, one to download and one for the
84# debugger).
85BFD_LIBS = \
86 archive.o archures.o bfd.o cache.o coffgen.o core.o ctor.o \
87 format.o init.o libbfd.o opncls.o reloc.o \
88 seclet.o section.o syms.o targets.o \
89 ecoff.o elf.o srec.o
90
91# This list is alphabetized to make it easier to keep in sync
92# with the decls and initializer in archures.c.
93ALL_MACHINES = \
94 cpu-a29k.o \
95 cpu-alpha.o \
96 cpu-h8300.o \
97 cpu-h8500.o \
98 cpu-hppa.o \
99 cpu-i386.o \
100 cpu-i960.o \
101 cpu-m68k.o \
102 cpu-m88k.o \
103 cpu-mips.o \
104 cpu-rs6000.o \
105 cpu-sh.o \
106 cpu-sparc.o \
107 cpu-vax.o \
108 cpu-we32k.o \
109 cpu-z8k.o
110
111# The .o files needed by all of the 32 bit vectors that are configured into
112# target_vector in targets.c if configured with --with-targets=all.
113BFD32_BACKENDS = \
114 aout-adobe.o \
115 aout32.o \
116 bout.o \
117 coff-a29k.o \
118 coff-h8300.o \
119 coff-h8500.o \
120 coff-i386.o \
121 coff-i960.o \
122 coff-m68k.o \
123 coff-m88k.o \
124 coff-mips.o \
125 coff-rs6000.o \
126 coff-sh.o \
127 coff-u68k.o \
128 coff-we32k.o \
129 coff-z8k.o \
130 elf32-gen.o \
131 elf32-hppa.o \
132 elf32-i386.o \
133 elf32-i860.o \
134 elf32-m68k.o \
135 elf32-m88k.o \
136 elf32-mips.o \
137 elf32-sparc.o \
138 elf32.o \
139 hp300hpux.o \
140 som.o \
141 i386aout.o \
142 i386bsd.o \
143 i386linux.o \
144 i386lynx.o \
145 i386lynx-cf.o \
146 netbsd386.o \
147 i386mach3.o \
148 ieee.o \
149 m68klynx.o \
150 m68klynx-cf.o \
151 mipsbsd.o \
152 newsos3.o \
153 nlm.o \
154 nlm32-gen.o \
155 nlm32-i386.o \
156 nlm32.o \
157 oasys.o \
158 reloc16.o \
159 stab-syms.o \
160 sunos.o
161
162# The .o files needed by all of the 64 bit vectors that are configured into
163# target_vector in targets.c if configured with --with-targets=all
164# and --with-64-bit-bfd.
165BFD64_BACKENDS = \
166 aout64.o \
167 coff-alpha.o \
168 demo64.o \
169 elf64-gen.o \
170 elf64.o \
171 nlm64-gen.o \
172 nlm64.o
173
174OPTIONAL_BACKENDS = \
175 aix386-core.o \
176 hpux-core.o \
177 lynx-core.o \
178 osf-core.o \
179 sco-core.o \
180 trad-core.o
181
182# These are defined by configure.in:
183# WORDSIZE=32
184# BFD_BACKENDS = $(BFD32_BACKENDS)
185
186all:
187
188#### host and target dependent Makefile fragments come in here.
189###
190
191FLAGS_TO_PASS = \
192 "prefix=$(prefix)" \
193 "exec_prefix=$(exec_prefix)" \
194 "against=$(against)" \
195 "AR=$(AR)" \
196 "AR_FLAGS=$(AR_FLAGS)" \
197 "CC=$(CC)" \
198 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
199 "CFLAGS=$(CFLAGS)" \
200 "RANLIB=$(RANLIB)" \
201 "MAKEINFO=$(MAKEINFO)" \
202 "INSTALL=$(INSTALL)" \
203 "INSTALL_DATA=$(INSTALL_DATA)" \
204 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
205 "BISON=$(BISON)"
206
207.c.o:
208 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $<
209
210# C source files that correspond to .o's.
211CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \
212 archures.c coff-i386.c aout64.c aout32.c sunos.c demo64.c \
213 coff-i960.c srec.c tekhex.c oasys.c ieee.c \
214 ecoff.c coff-m68k.c coff-u68k.c \
215 coff-a29k.c coff-rs6000.c coffgen.c format.c \
216 section.c core.c syms.c stab-syms.c reloc.c init.c ctor.c \
217 seclet.c coff-m88k.c coff-mips.c coff-sh.c trad-core.c newsos3.c \
218 i386aout.c i386linux.c netbsd386.c i386mach3.c bout.c aout-adobe.c coff-we32k.c \
219 i386bsd.c cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c \
220 cpu-m88k.c cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c \
221 cpu-rs6000.c coff-h8300.c som.c cpu-hppa.c cpu-we32k.c reloc16.c \
222 mipsbsd.c cpu-sh.c \
223 elf32.c elf32-sparc.c elf32-i386.c elf32-i860.c elf32-m68k.c \
224 elf32-hppa.c elf32-m88k.c elf32-mips.c elf32-gen.c \
225 elf64.c elf64-gen.c \
226 nlm32.c nlm32-gen.c nlm32-i386.c nlm64.c nlm64-gen.c \
227 coff-alpha.c cpu-alpha.c \
228 hp300bsd.c hp300hpux.c \
229 i386lynx.c i386lynx-cf.c m68klynx.c m68klynx-cf.c
230
231STAGESTUFF = $(TARGETLIB) $(OFILES)
232
233all: Makefile $(TARGETLIB)
234 @$(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
235
236.NOEXPORT:
237MAKEOVERRIDES=
238
239check:
240installcheck:
241
242info dvi : force
243 @$(MAKE) subdir_do DO=$@ "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
244
245clean-info:
246 @$(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
247
248install-info: force
249 @$(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
250
251# Various kinds of .o files to put in libbfd.a:
252# BFD_LIBS Generic routines, always needed.
253# BFD_BACKENDS Routines the configured targets need.
254# BFD_MACHINES Architecture-specific routines the configured targets need.
255# HDEPFILES Routines the host needs, regardless of target.
256# TDEPFILES Routines the target needs, regardless of host.
257OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) $(HDEPFILES) $(TDEPFILES)
258
259ofiles : Makefile
260 rm -f ofiles
261 f=""; \
262 for i in $(OFILES) ; do \
263 case " $$f " in \
264 *" $$i "*) ;; \
265 *) f="$$f $$i" ;; \
266 esac ; \
267 done ; \
268 echo $$f > ofiles
269
270$(TARGETLIB): $(OFILES) ofiles
271 rm -f $(TARGETLIB)
272 @echo ofiles = `cat ofiles`
273 $(AR) $(AR_FLAGS) $(TARGETLIB) `cat ofiles`
274 $(RANLIB) $(TARGETLIB)
275
276# When compiling archures.c and targets.c, supply the default target
277# info from configure.
278
279
280targets.o: targets.c Makefile
281 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $(TDEFAULTS) $<
282
283archures.o: archures.c Makefile
284 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $(TDEFAULTS) $<
285
286subdir_do: force
287 @for i in $(DODIRS); do \
288 if [ -d ./$$i ] ; then \
289 if (cd ./$$i; \
290 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
291 else exit 1 ; fi ; \
292 else true ; fi ; \
293 done
294
295tags etags: TAGS
296
297TAGS: force
298 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
299
300do_mostlyclean:
301 rm -f *.o *~ core *.E *.p *.ip aout-params.h gen-aout
302do_clean: do_mostlyclean
303 rm -f libbfd.a TAGS bfd.h stmp-bfd.h ofiles
304do_distclean: do_clean
305 rm -f Makefile config.status sysdep.h
306do_realclean: do_distclean
307 rm -f $(srcdir)/libcoff.h $(srcdir)/libbfd.h $(srcdir)/bfd-in2.h
308
309mostlyclean: do_mostlyclean
310 $(MAKE) subdir_do DO=mostlyclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
311clean: do_clean
312 $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
313distclean:
314 $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
315 $(MAKE) do_distclean
316clobber realclean:
317 $(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
318 $(MAKE) do_realclean
319
320# Mark everything as depending on config.status, since the timestamp on
321# sysdep.h might actually move backwards if we reconfig and relink it
322# to a different hosts/h-xxx.h file. This will force a recompile anyway.
323RECONFIG = config.status
324$(BFD_LIBS): libbfd.h $(BFD_H) $(RECONFIG)
325$(BFD_MACHINES): libbfd.h $(BFD_H) $(RECONFIG)
326$(BFD_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
327$(OPTIONAL_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
328
329# Get around a Sun Make bug in SunOS 4.1.1 with VPATH
330cpu-i386.o:cpu-i386.c
331cpu-z8k.o: cpu-z8k.c
332cpu-h8500.o: cpu-h8500.c
333cpu-we32k.o: cpu-we32k.c
334
335saber:
336 #suppress 65 on bfd_map_over_sections
337 #suppress 66 on bfd_map_over_sections
338 #suppress 67 on bfd_map_over_sections
339 #suppress 68 on bfd_map_over_sections
340 #suppress 69 on bfd_map_over_sections
341 #suppress 70 on bfd_map_over_sections
342 #suppress 110 in bfd_map_over_sections
343 #suppress 112 in bfd_map_over_sections
344 #suppress 530
345 #suppress 590 in swap_exec_header
346 #suppress 590 in _bfd_dummy_core_file_matches_executable_p
347 #suppress 590 in bfd_dont_truncate_arname
348 #suppress 590 on ignore
349 #suppress 590 on abfd
350 #setopt load_flags $(CFLAGS)
351 #load $(CFILES)
352
353
354#-----------------------------------------------------------------------------
355# 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
356#
357# 'VERSION' file must be present and contain a string of the form "x.y"
358#-----------------------------------------------------------------------------
359
360ver960.c: FORCE
361 rm -f ver960.c
362 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
363
364
365# This target should be invoked before building a new release.
366# 'VERSION' file must be present and contain a string of the form "x.y"
367#
368roll:
369 @V=`cat VERSION` ; \
370 MAJ=`sed 's/\..*//' VERSION` ; \
371 MIN=`sed 's/.*\.//' VERSION` ; \
372 V=$$MAJ.`expr $$MIN + 1` ; \
373 rm -f VERSION ; \
374 echo $$V >VERSION ; \
375 echo Version $$V
376
377# Dummy target to force execution of dependent targets.
378#
379force:
380
381install:
382 $(INSTALL_DATA) libbfd.a $(libdir)/libbfd.a
383 $(RANLIB) $(libdir)/libbfd.a
384# Install BFD include file, and others that it needs. Install them
385# both in GCC's include directory, and in the system include dir
386# if configured as $(oldincludedir) -- which it usually isnt.
387 $(INSTALL_DATA) $(BFD_H) $(includedir)/bfd.h
388 $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(includedir)/ansidecl.h
389 $(INSTALL_DATA) $(INCDIR)/obstack.h $(includedir)/obstack.h
390 -if test -z "$(oldincludedir)"; then true; else \
391 test -d $(oldincludedir) || mkdir $(oldincludedir); \
392 $(INSTALL_DATA) $(BFD_H) $(oldincludedir)/bfd.h; \
393 $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(oldincludedir)/ansidecl.h; \
394 $(INSTALL_DATA) $(INCDIR)/obstack.h $(oldincludedir)/obstack.h; \
395 @$(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS); \
396 fi
397
398Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
399 $(SHELL) config.status
400
401dep: $(CFILES)
402 mkdep $(CFLAGS) $?
403
404host-aout.o: Makefile
405
406# The following program can be used to generate a simple config file
407# which can be folded into an h-XXX file for a new host, with some editing.
408aout-params.h: gen-aout
409 ./gen-aout > aout-params.h
410gen-aout: $(srcdir)/gen-aout.c Makefile
411 $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
412
413BFDIN_H= $(srcdir)/bfd-in2.h
414
415$(BFD_H): stmp-bfd.h ; @true
416
417# The file ../include/bfd.h is from earlier attempts to get this right.
418# If the file is still there, kill it.
419stmp-bfd.h : $(srcdir)/bfd-in2.h Makefile
420 rm -f bfd.h-new 64 ../include/bfd.h
421 -grep HOST_64_BIT sysdep.h > 64
422 sed -e 's/@WORDSIZE@/$(WORDSIZE)/' -e '/64-bit.*sysdep.h/ r 64' < $(srcdir)/bfd-in2.h > bfd.h-new
423 $(srcdir)/../move-if-change bfd.h-new $(BFD_H)
424 rm -f 64
425 touch stmp-bfd.h
426
427# Could really use a "copy-if-change"...
428headers:
429 (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS))
430 cp $(docdir)/bfd.h bfd-in2.h-new
431 $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
432 cp $(docdir)/libbfd.h libbfd.h-new
433 $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
434 cp $(docdir)/libcoff.h libcoff.h-new
435 $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
436
437bfd.info:
438 (cd $(docdir); $(MAKE) bfd.info $(FLAGS_TO_PASS))
439
440bfd.dvi:
441 (cd $(docdir); $(MAKE) bfd.dvi $(FLAGS_TO_PASS))
442
443bfd.ps:
444 (cd $(docdir); $(MAKE) bfd.ps $(FLAGS_TO_PASS))
445
446# What appears below is generated by a hacked mkdep using gcc -MM.
447
448# DO NOT DELETE THIS LINE -- mkdep uses it.
449# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
450
451libbfd.o : libbfd.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
452opncls.o : opncls.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
453bfd.o : bfd.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
454 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h libecoff.h libelf.h
455archive.o : archive.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
456 $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h
457targets.o : targets.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
458cache.o : cache.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
459archures.o : archures.c $(BFD_H) $(INCDIR)/obstack.h
460aout64.o : aout64.c
461aout32.o : aout32.c aoutx.h $(BFD_H) $(INCDIR)/ansidecl.h \
462 $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \
463 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
464sunos.o : sunos.c aoutf1.h $(BFD_H) $(INCDIR)/obstack.h \
465 libaout.h libbfd.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
466 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
467hp300hpux.o : hp300hpux.c aoutx.h $(BFD_H) $(INCDIR)/ansidecl.h \
468 $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \
469 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
470 $(INCDIR)/aout/hp300hpux.h aout-target.h
471hp300bsd.o : hp300bsd.c aoutx.h $(BFD_H) $(INCDIR)/ansidecl.h \
472 $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \
473 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
474 aout-target.h
475demo64.o : demo64.c
476
477srec.o : srec.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
478oasys.o : oasys.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
479 $(INCDIR)/oasys.h liboasys.h
480ieee.o : ieee.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
481 $(INCDIR)/ieee.h libieee.h
482coff-h8300.o: coff-h8300.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
483 $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
484 coffswap.h seclet.h
485coff-h8500.o: coff-h8500.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
486 $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
487 coffswap.h seclet.h
488coff-a29k.o: coff-a29k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
489 $(INCDIR)/coff/a29k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
490 coffswap.h seclet.h
491coff-i386.o: coff-i386.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
492 $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
493 coffswap.h seclet.h
494coff-i960.o: coff-i960.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
495 $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
496 coffswap.h seclet.h
497coff-m68k.o: coff-m68k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
498 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
499 coffswap.h seclet.h
500coff-m88k.o: coff-m88k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
501 $(INCDIR)/coff/m88k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
502 coffswap.h seclet.h
503ecoff.o: ecoff.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
504 $(INCDIR)/coff/internal.h libecoff.h libcoff.h seclet.h \
505 $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h libaout.h \
506 $(INCDIR)/aout/aout64.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/sym.h \
507 $(INCDIR)/coff/symconst.h
508coff-mips.o: coff-mips.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
509 $(INCDIR)/coff/mips.h $(INCDIR)/coff/internal.h libcoff.h \
510 coffswap.h seclet.h libecoff.h ecoffswap.h $(INCDIR)/coff/ecoff.h
511coff-alpha.o: coff-alpha.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
512 $(INCDIR)/coff/alpha.h $(INCDIR)/coff/internal.h libcoff.h \
513 coffswap.h seclet.h libecoff.h ecoffswap.h $(INCDIR)/coff/ecoff.h
514coff-rs6000.o: coff-rs6000.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
515 $(INCDIR)/coff/rs6000.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
516 coffswap.h seclet.h
517coff-z8k.o: coff-z8k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
518 $(INCDIR)/coff/z8k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
519 coffswap.h seclet.h
520coff-we32k.o: coff-we32k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
521 $(INCDIR)/coff/we32k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
522 coffswap.h seclet.h
523coffgen.o: coffgen.c $(BFD_H) libbfd.h $(INCDIR)/coff/internal.h \
524 libcoff.h
525reloc16.o: reloc16.c $(BFD_H) libbfd.h $(INCDIR)/coff/internal.h \
526 libcoff.h seclet.h
527format.o : format.c $(BFD_H) \
528 $(INCDIR)/obstack.h libbfd.h
529section.o : section.c $(BFD_H) \
530 $(INCDIR)/obstack.h libbfd.h
531core.o : core.c $(BFD_H) \
532 $(INCDIR)/obstack.h libbfd.h
533syms.o : syms.c $(BFD_H) \
534 $(INCDIR)/obstack.h libbfd.h
535syms.o : stab-syms.c
536reloc.o : reloc.c $(BFD_H) \
537 $(INCDIR)/obstack.h libbfd.h
538
539trad-core.o : trad-core.c $(BFD_H) $(INCDIR)/obstack.h \
540 libbfd.h libaout.h
541sco-core.o : sco-core.c $(BFD_H) libbfd.h libcoff.h \
542 $(INCDIR)/obstack.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h
543aix386-core.o : aix386-core.c $(BFD_H) libbfd.h libcoff.h \
544 $(INCDIR)/obstack.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h
545hpux-core.o : hpux-core.c $(BFD_H) libbfd.h libhppa.h
546osf-core.o : osf-core.c $(BFD_H) libbfd.h
547
548newsos3.o : newsos3.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
549 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
550 $(INCDIR)/aout/ar.h libaout.h
551i386lynx.o : i386lynx.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
552 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
553 $(INCDIR)/aout/ar.h libaout.h
554i386lynx-cf.o: i386lynx-cf.c coff-i386.c $(BFD_H) $(INCDIR)/obstack.h \
555 libbfd.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h libcoff.h \
556 coffcode.h coffswap.h seclet.h
557lynx-core.o : lynx-core.c $(BFD_H) libbfd.h
558i386aout.o : i386aout.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
559 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
560 $(INCDIR)/aout/ar.h libaout.h
561netbsd386.o : netbsd386.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
562 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
563 $(INCDIR)/aout/ar.h libaout.h
564i386mach3.o : i386mach3.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
565 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
566 $(INCDIR)/aout/ar.h libaout.h
567i386linux.o : i386linux.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
568 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
569 $(INCDIR)/aout/ar.h libaout.h
570i386bsd.o : i386bsd.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
571 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
572 $(INCDIR)/aout/ar.h libaout.h
573bout.o : bout.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
574 $(INCDIR)/bout.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h
575mipsbsd.o : mipsbsd.c $(BFD_H) $(INCDIR)/obstack.h \
576 libbfd.h libaout.h
577elf.o : elf.c libelf.h libbfd.h $(BFD_H) $(INCDIR)/obstack.h
578elf32.o : elf32.c elfcode.h libelf.h libbfd.h $(BFD_H) \
579 $(INCDIR)/obstack.h
580elf32-sparc.o : elf32-sparc.c libelf.h libbfd.h $(BFD_H) \
581 $(INCDIR)/obstack.h elf32-target.h
582elf32-m68k.o : elf32-m68k.c libelf.h libbfd.h $(BFD_H) \
583 $(INCDIR)/obstack.h elf32-target.h
584elf32-i860.o : elf32-i860.c libelf.h libbfd.h $(BFD_H) \
585 $(INCDIR)/obstack.h elf32-target.h
586elf32-i386.o : elf32-i386.c libelf.h libbfd.h $(BFD_H) \
587 $(INCDIR)/obstack.h elf32-target.h
588elf32-hppa.o : elf32-hppa.c $(srcdir)/elf32-hppa.h $(srcdir)/libhppa.h \
589 libelf.h libbfd.h $(BFD_H) $(INCDIR)/obstack.h elf32-target.h
590elf32-m88k.o : elf32-m88k.c libelf.h libbfd.h \
591 $(BFD_H) $(INCDIR)/obstack.h elf32-target.h
592elf32-mips.o : elf32-mips.c libelf.h libbfd.h \
593 $(BFD_H) $(INCDIR)/obstack.h $(INCDIR)/elf/mips.h elf32-target.h
594elf32-gen.o : elf32-gen.c libelf.h libbfd.h \
595 $(BFD_H) $(INCDIR)/obstack.h elf32-target.h
596elf64.o : elf64.c elfcode.h libelf.h libbfd.h $(BFD_H) \
597 $(INCDIR)/obstack.h
598elf64-gen.o : elf64-gen.c libelf.h libbfd.h \
599 $(BFD_H) $(INCDIR)/obstack.h elf64-target.h
600nlm.o : nlm.c libnlm.h libbfd.h $(BFD_H) $(INCDIR)/obstack.h
601nlm32.o : nlm32.c nlmcode.h libnlm.h libbfd.h $(BFD_H) \
602 $(INCDIR)/obstack.h
603nlm32-gen.o : nlm32-gen.c libnlm.h libbfd.h \
604 $(BFD_H) $(INCDIR)/obstack.h nlm-target.h
605nlm32-i386.o : nlm32-i386.c libnlm.h libbfd.h \
606 $(BFD_H) $(INCDIR)/obstack.h nlm-target.h
607nlm64.o : nlm64.c nlmcode.h libnlm.h libbfd.h $(BFD_H) \
608 $(INCDIR)/obstack.h
609nlm64-gen.o : nlm64-gen.c libnlm.h libbfd.h \
610 $(BFD_H) $(INCDIR)/obstack.h nlm-target.h
611
612# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
613
This page took 0.025994 seconds and 4 git commands to generate.