Thu Aug 12 10:32:47 1993 David J. Mackenzie (djm@thepub.cygnus.com)
[deliverable/binutils-gdb.git] / bfd / Makefile.in
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
21 srcdir = .
22
23 prefix = /usr/local
24
25 exec_prefix = $(prefix)
26 bindir = $(exec_prefix)/bin
27 libdir = $(exec_prefix)/lib
28
29 datadir = $(prefix)/lib
30 mandir = $(prefix)/man
31 man1dir = $(mandir)/man1
32 man2dir = $(mandir)/man2
33 man3dir = $(mandir)/man3
34 man4dir = $(mandir)/man4
35 man5dir = $(mandir)/man5
36 man6dir = $(mandir)/man6
37 man7dir = $(mandir)/man7
38 man8dir = $(mandir)/man8
39 man9dir = $(mandir)/man9
40 infodir = $(prefix)/info
41 includedir = $(prefix)/include
42 oldincludedir =
43 docdir = doc
44
45 SHELL = /bin/sh
46
47 INSTALL = install -c
48 INSTALL_PROGRAM = $(INSTALL)
49 INSTALL_DATA = $(INSTALL)
50
51 AR = ar
52 AR_FLAGS = rc
53 CFLAGS = -g
54 BISON = bison
55 MAKEINFO = makeinfo
56 RANLIB = ranlib
57
58 CC_FOR_BUILD = $(CC)
59
60 INCDIR = $(srcdir)/../include
61 CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
62 DEP = mkdep
63
64 SUBDIRS = doc
65
66
67 TARGETLIB = libbfd.a
68
69 # bfd.h goes here, for now
70 BFD_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
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).
85 BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \
86 archures.o core.o section.o format.o syms.o reloc.o init.o \
87 ctor.o seclet.o coffgen.o ecoff.o reloc16.o elf.o srec.o
88
89 ALL_MACHINES = cpu-h8300.o cpu-i960.o cpu-sparc.o cpu-m68k.o cpu-m88k.o \
90 cpu-vax.o cpu-mips.o cpu-a29k.o cpu-i386.o cpu-rs6000.o cpu-hppa.o \
91 cpu-z8k.o cpu-we32k.o cpu-h8500.o cpu-alpha.o cpu-sh.o
92
93 BFD32_BACKENDS = \
94 elf32.o elf32-sparc.o elf32-i386.o elf32-i860.o elf32-m68k.o \
95 elf32-hppa.o elf32-mips.o elf32-m88k.o elf32-gen.o \
96 nlm.o \
97 nlm32.o nlm32-gen.o nlm32-i386.o \
98 aout32.o sunos.o newsos3.o mipsbsd.o aout-adobe.o \
99 i386aout.o i386bsd.o i386linux.o i386lynx.o \
100 hp300bsd.o hp300hpux.o bout.o \
101 coff-i960.o coff-a29k.o coff-m68k.o coff-u68k.o \
102 coff-i386.o coff-m88k.o \
103 coff-rs6000.o coff-h8300.o coff-h8500.o coff-z8k.o coff-we32k.o \
104 coff-mips.o coff-sh.o \
105 hppa.o oasys.o ieee.o srec.o \
106 stab-syms.o
107
108 BFD64_BACKENDS = \
109 elf64.o elf64-gen.o \
110 nlm64.o nlm64-gen.o \
111 aout64.o demo64.o coff-alpha.o
112
113 OPTIONAL_BACKENDS = trad-core.o sco-core.o aix386-core.o hpux-core.o
114
115 # These are defined by configure.in:
116 # WORDSIZE=32
117 # BFD_BACKENDS = $(BFD32_BACKENDS)
118
119 all:
120
121 #### host and target dependent Makefile fragments come in here.
122 ###
123
124 FLAGS_TO_PASS = \
125 "prefix=$(prefix)" \
126 "exec_prefix=$(exec_prefix)" \
127 "against=$(against)" \
128 "AR=$(AR)" \
129 "AR_FLAGS=$(AR_FLAGS)" \
130 "CC=$(CC)" \
131 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
132 "CFLAGS=$(CFLAGS)" \
133 "RANLIB=$(RANLIB)" \
134 "MAKEINFO=$(MAKEINFO)" \
135 "INSTALL=$(INSTALL)" \
136 "INSTALL_DATA=$(INSTALL_DATA)" \
137 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
138 "BISON=$(BISON)"
139
140 .c.o:
141 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $<
142
143 # C source files that correspond to .o's.
144 CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \
145 archures.c coff-i386.c aout64.c aout32.c sunos.c demo64.c \
146 coff-i960.c srec.c tekhex.c oasys.c ieee.c \
147 ecoff.c coff-m68k.c coff-u68k.c \
148 coff-a29k.c coff-rs6000.c coffgen.c format.c \
149 section.c core.c syms.c stab-syms.c reloc.c init.c ctor.c \
150 seclet.c coff-m88k.c coff-mips.c coff-sh.c trad-core.c newsos3.c \
151 i386aout.c i386linux.c bout.c aout-adobe.c coff-we32k.c \
152 i386bsd.c cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c \
153 cpu-m88k.c cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c \
154 cpu-rs6000.c coff-h8300.c hppa.c cpu-hppa.c cpu-we32k.c reloc16.c \
155 mipsbsd.c cpu-sh.c \
156 elf32.c elf32-sparc.c elf32-i386.c elf32-i860.c elf32-m68k.c \
157 elf32-hppa.c elf32-m88k.c elf32-mips.c elf32-gen.c \
158 elf64.c elf64-gen.c \
159 nlm32.c nlm32-gen.c nlm32-i386.c nlm64.c nlm64-gen.c \
160 coff-alpha.c cpu-alpha.c \
161 hp300bsd.c hp300hpux.c i386lynx.c
162
163 STAGESTUFF = $(TARGETLIB) $(OFILES)
164
165 all: Makefile $(TARGETLIB)
166 @$(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
167
168 .NOEXPORT:
169 MAKEOVERRIDES=
170
171 check:
172 installcheck:
173
174 info dvi : force
175 @$(MAKE) subdir_do DO=$@ "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
176
177 clean-info:
178 @$(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
179
180 install-info: force
181 @$(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
182
183 # Various kinds of .o files to put in libbfd.a:
184 # BFD_LIBS Generic routines, always needed.
185 # BFD_BACKENDS Routines the configured targets need.
186 # BFD_MACHINES Architecture-specific routines the configured targets need.
187 # HDEPFILES Routines the host needs, regardless of target.
188 # TDEPFILES Routines the target needs, regardless of host.
189 OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) $(HDEPFILES) $(TDEPFILES)
190
191 ofiles : Makefile
192 rm -f ofiles
193 f=""; \
194 for i in $(OFILES) ; do \
195 case " $$f " in \
196 *" $$i "*) ;; \
197 *) f="$$f $$i" ;; \
198 esac ; \
199 done ; \
200 echo $$f > ofiles
201
202 $(TARGETLIB): $(OFILES) ofiles
203 rm -f $(TARGETLIB)
204 @echo ofiles = `cat ofiles`
205 $(AR) $(AR_FLAGS) $(TARGETLIB) `cat ofiles`
206 $(RANLIB) $(TARGETLIB)
207
208 # When compiling archures.c and targets.c, supply the default target
209 # info from configure.
210
211
212 targets.o: targets.c Makefile
213 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $(TDEFAULTS) $<
214
215 archures.o: archures.c Makefile
216 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $(TDEFAULTS) $<
217
218 subdir_do: force
219 @for i in $(DODIRS); do \
220 if [ -d ./$$i ] ; then \
221 if (cd ./$$i; \
222 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
223 else exit 1 ; fi ; \
224 else true ; fi ; \
225 done
226
227 tags etags: TAGS
228
229 TAGS: force
230 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
231
232 do_mostlyclean:
233 rm -f *.o *~ core *.E *.p *.ip aout-params.h gen-aout
234 do_clean: do_mostlyclean
235 rm -f libbfd.a TAGS bfd.h stmp-bfd.h ofiles
236 do_distclean: do_clean
237 rm -f Makefile config.status sysdep.h
238 do_realclean: do_distclean
239 rm -f $(srcdir)/libcoff.h $(srcdir)/libbfd.h $(srcdir)/bfd-in2.h
240
241 mostlyclean: do_mostlyclean
242 $(MAKE) subdir_do DO=mostlyclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
243 clean: do_clean
244 $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
245 distclean:
246 $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
247 $(MAKE) do_distclean
248 clobber realclean:
249 $(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
250 $(MAKE) do_realclean
251
252 # Mark everything as depending on config.status, since the timestamp on
253 # sysdep.h might actually move backwards if we reconfig and relink it
254 # to a different hosts/h-xxx.h file. This will force a recompile anyway.
255 RECONFIG = config.status
256 $(BFD_LIBS): libbfd.h $(BFD_H) $(RECONFIG)
257 $(BFD_MACHINES): libbfd.h $(BFD_H) $(RECONFIG)
258 $(BFD_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
259 $(OPTIONAL_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
260
261 # Get around a Sun Make bug in SunOS 4.1.1 with VPATH
262 cpu-i386.o:cpu-i386.c
263 cpu-z8k.o: cpu-z8k.c
264 cpu-h8500.o: cpu-h8500.c
265 cpu-we32k.o: cpu-we32k.c
266
267 saber:
268 #suppress 65 on bfd_map_over_sections
269 #suppress 66 on bfd_map_over_sections
270 #suppress 67 on bfd_map_over_sections
271 #suppress 68 on bfd_map_over_sections
272 #suppress 69 on bfd_map_over_sections
273 #suppress 70 on bfd_map_over_sections
274 #suppress 110 in bfd_map_over_sections
275 #suppress 112 in bfd_map_over_sections
276 #suppress 530
277 #suppress 590 in swap_exec_header
278 #suppress 590 in _bfd_dummy_core_file_matches_executable_p
279 #suppress 590 in bfd_dont_truncate_arname
280 #suppress 590 on ignore
281 #suppress 590 on abfd
282 #setopt load_flags $(CFLAGS)
283 #load $(CFILES)
284
285
286 #-----------------------------------------------------------------------------
287 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
288 #
289 # 'VERSION' file must be present and contain a string of the form "x.y"
290 #-----------------------------------------------------------------------------
291
292 ver960.c: FORCE
293 rm -f ver960.c
294 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
295
296
297 # This target should be invoked before building a new release.
298 # 'VERSION' file must be present and contain a string of the form "x.y"
299 #
300 roll:
301 @V=`cat VERSION` ; \
302 MAJ=`sed 's/\..*//' VERSION` ; \
303 MIN=`sed 's/.*\.//' VERSION` ; \
304 V=$$MAJ.`expr $$MIN + 1` ; \
305 rm -f VERSION ; \
306 echo $$V >VERSION ; \
307 echo Version $$V
308
309 # Dummy target to force execution of dependent targets.
310 #
311 force:
312
313 install:
314 $(INSTALL_DATA) libbfd.a $(libdir)/libbfd.a
315 $(RANLIB) $(libdir)/libbfd.a
316 # Install BFD include file, and others that it needs. Install them
317 # both in GCC's include directory, and in the system include dir
318 # if configured as $(oldincludedir) -- which it usually isnt.
319 $(INSTALL_DATA) $(BFD_H) $(includedir)/bfd.h
320 $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(includedir)/ansidecl.h
321 $(INSTALL_DATA) $(INCDIR)/obstack.h $(includedir)/obstack.h
322 -if test -z "$(oldincludedir)"; then true; else \
323 test -d $(oldincludedir) || mkdir $(oldincludedir); \
324 $(INSTALL_DATA) $(BFD_H) $(oldincludedir)/bfd.h; \
325 $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(oldincludedir)/ansidecl.h; \
326 $(INSTALL_DATA) $(INCDIR)/obstack.h $(oldincludedir)/obstack.h; \
327 @$(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS); \
328 fi
329
330 Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
331 $(SHELL) config.status
332
333 dep: $(CFILES)
334 mkdep $(CFLAGS) $?
335
336 host-aout.o: Makefile
337
338 # The following program can be used to generate a simple config file
339 # which can be folded into an h-XXX file for a new host, with some editing.
340 aout-params.h: gen-aout
341 ./gen-aout > aout-params.h
342 gen-aout: $(srcdir)/gen-aout.c Makefile
343 $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
344
345 BFDIN_H= $(srcdir)/bfd-in2.h
346
347 $(BFD_H): stmp-bfd.h ; @true
348
349 # The file ../include/bfd.h is from earlier attempts to get this right.
350 # If the file is still there, kill it.
351 stmp-bfd.h : $(srcdir)/bfd-in2.h Makefile
352 rm -f bfd.h-new 64 ../include/bfd.h
353 -grep HOST_64_BIT sysdep.h > 64
354 sed -e 's/@WORDSIZE@/$(WORDSIZE)/' -e '/64-bit.*sysdep.h/ r 64' < $(srcdir)/bfd-in2.h > bfd.h-new
355 $(srcdir)/../move-if-change bfd.h-new $(BFD_H)
356 rm -f 64
357 touch stmp-bfd.h
358
359 # Could really use a "copy-if-change"...
360 headers:
361 (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS))
362 cp $(docdir)/bfd.h bfd-in2.h-new
363 $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
364 cp $(docdir)/libbfd.h libbfd.h-new
365 $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
366 cp $(docdir)/libcoff.h libcoff.h-new
367 $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
368
369 bfd.info:
370 (cd $(docdir); $(MAKE) bfd.info $(FLAGS_TO_PASS))
371
372 bfd.dvi:
373 (cd $(docdir); $(MAKE) bfd.dvi $(FLAGS_TO_PASS))
374
375 bfd.ps:
376 (cd $(docdir); $(MAKE) bfd.ps $(FLAGS_TO_PASS))
377
378 # What appears below is generated by a hacked mkdep using gcc -MM.
379
380 # DO NOT DELETE THIS LINE -- mkdep uses it.
381 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
382
383 libbfd.o : libbfd.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
384 opncls.o : opncls.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
385 bfd.o : bfd.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
386 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h libecoff.h
387 archive.o : archive.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
388 $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h
389 targets.o : targets.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
390 cache.o : cache.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
391 archures.o : archures.c $(BFD_H) $(INCDIR)/obstack.h
392 aout64.o : aout64.c
393 aout32.o : aout32.c aoutx.h $(BFD_H) $(INCDIR)/ansidecl.h \
394 $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \
395 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
396 sunos.o : sunos.c aoutf1.h $(BFD_H) $(INCDIR)/obstack.h \
397 libaout.h libbfd.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
398 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
399 hp300hpux.o : hp300hpux.c aoutx.h $(BFD_H) $(INCDIR)/ansidecl.h \
400 $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \
401 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
402 $(INCDIR)/aout/hp300hpux.h aout-target.h
403 hp300bsd.o : hp300bsd.c aoutx.h $(BFD_H) $(INCDIR)/ansidecl.h \
404 $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \
405 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
406 aout-target.h
407 demo64.o : demo64.c
408
409 srec.o : srec.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
410 oasys.o : oasys.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
411 $(INCDIR)/oasys.h liboasys.h
412 ieee.o : ieee.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
413 $(INCDIR)/ieee.h libieee.h
414 coff-h8300.o: coff-h8300.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
415 $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
416 coffswap.h seclet.h
417 coff-h8500.o: coff-h8500.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
418 $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
419 coffswap.h seclet.h
420 coff-a29k.o: coff-a29k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
421 $(INCDIR)/coff/a29k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
422 coffswap.h seclet.h
423 coff-i386.o: coff-i386.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
424 $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
425 coffswap.h seclet.h
426 coff-i960.o: coff-i960.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
427 $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
428 coffswap.h seclet.h
429 coff-m68k.o: coff-m68k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
430 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
431 coffswap.h seclet.h
432 coff-m88k.o: coff-m88k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
433 $(INCDIR)/coff/m88k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
434 coffswap.h seclet.h
435 ecoff.o: ecoff.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
436 $(INCDIR)/coff/internal.h libecoff.h libcoff.h seclet.h \
437 $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h libaout.h \
438 $(INCDIR)/aout/aout64.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/sym.h \
439 $(INCDIR)/coff/symconst.h
440 coff-mips.o: coff-mips.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
441 $(INCDIR)/coff/mips.h $(INCDIR)/coff/internal.h libcoff.h \
442 coffswap.h seclet.h libecoff.h ecoffswap.h $(INCDIR)/coff/ecoff.h
443 coff-alpha.o: coff-alpha.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
444 $(INCDIR)/coff/alpha.h $(INCDIR)/coff/internal.h libcoff.h \
445 coffswap.h seclet.h libecoff.h ecoffswap.h $(INCDIR)/coff/ecoff.h
446 coff-rs6000.o: coff-rs6000.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
447 $(INCDIR)/coff/rs6000.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
448 coffswap.h seclet.h
449 coff-z8k.o: coff-z8k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
450 $(INCDIR)/coff/z8k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
451 coffswap.h seclet.h
452 coff-we32k.o: coff-we32k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
453 $(INCDIR)/coff/we32k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
454 coffswap.h seclet.h
455 coffgen.o: coffgen.c $(BFD_H) libbfd.h $(INCDIR)/coff/internal.h \
456 libcoff.h
457 reloc16.o: reloc16.c $(BFD_H) libbfd.h $(INCDIR)/coff/internal.h \
458 libcoff.h seclet.h
459 format.o : format.c $(BFD_H) \
460 $(INCDIR)/obstack.h libbfd.h
461 section.o : section.c $(BFD_H) \
462 $(INCDIR)/obstack.h libbfd.h
463 core.o : core.c $(BFD_H) \
464 $(INCDIR)/obstack.h libbfd.h
465 syms.o : syms.c $(BFD_H) \
466 $(INCDIR)/obstack.h libbfd.h
467 syms.o : stab-syms.c
468 reloc.o : reloc.c $(BFD_H) \
469 $(INCDIR)/obstack.h libbfd.h
470
471 trad-core.o : trad-core.c $(BFD_H) $(INCDIR)/obstack.h \
472 libbfd.h libaout.h
473 sco-core.o : sco-core.c $(BFD_H) libbfd.h libcoff.h \
474 $(INCDIR)/obstack.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h
475 aix386-core.o : aix386-core.c $(BFD_H) libbfd.h libcoff.h \
476 $(INCDIR)/obstack.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h
477 hpux-core.o : hpux-core.c $(BFD_H) libbfd.h libhppa.h
478
479 newsos3.o : newsos3.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
480 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
481 $(INCDIR)/aout/ar.h libaout.h
482 i386lynx.o : i386lynx.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
483 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
484 $(INCDIR)/aout/ar.h libaout.h
485 i386aout.o : i386aout.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
486 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
487 $(INCDIR)/aout/ar.h libaout.h
488 i386linux.o : i386linux.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
489 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
490 $(INCDIR)/aout/ar.h libaout.h
491 i386bsd.o : i386bsd.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
492 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
493 $(INCDIR)/aout/ar.h libaout.h
494 bout.o : bout.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
495 $(INCDIR)/bout.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h
496 mipsbsd.o : mipsbsd.c $(BFD_H) $(INCDIR)/obstack.h \
497 libbfd.h libaout.h
498 elf.o : elf.c libelf.h libbfd.h $(BFD_H) $(INCDIR)/obstack.h
499 elf32.o : elf32.c elfcode.h libelf.h libbfd.h $(BFD_H) \
500 $(INCDIR)/obstack.h
501 elf32-sparc.o : elf32-sparc.c libelf.h libbfd.h $(BFD_H) \
502 $(INCDIR)/obstack.h
503 elf32-m68k.o : elf32-m68k.c libelf.h libbfd.h $(BFD_H) \
504 $(INCDIR)/obstack.h
505 elf32-i860.o : elf32-i860.c libelf.h libbfd.h $(BFD_H) \
506 $(INCDIR)/obstack.h
507 elf32-i386.o : elf32-i386.c libelf.h libbfd.h $(BFD_H) \
508 $(INCDIR)/obstack.h
509 elf32-hppa.o : elf32-hppa.c $(srcdir)/elf32-hppa.h libelf.h libbfd.h \
510 $(BFD_H) $(INCDIR)/obstack.h
511 elf32-m88k.o : elf32-m88k.c libelf.h libbfd.h \
512 $(BFD_H) $(INCDIR)/obstack.h
513 elf32-mips.o : elf32-mips.c libelf.h libbfd.h \
514 $(BFD_H) $(INCDIR)/obstack.h
515 elf32-gen.o : elf32-gen.c libelf.h libbfd.h \
516 $(BFD_H) $(INCDIR)/obstack.h
517 elf64.o : elf64.c elfcode.h libelf.h libbfd.h $(BFD_H) \
518 $(INCDIR)/obstack.h
519 elf64-gen.o : elf64-gen.c libelf.h libbfd.h \
520 $(BFD_H) $(INCDIR)/obstack.h
521 nlm.o : nlm.c libnlm.h libbfd.h $(BFD_H) $(INCDIR)/obstack.h
522 nlm32.o : nlm32.c nlmcode.h libnlm.h libbfd.h $(BFD_H) \
523 $(INCDIR)/obstack.h
524 nlm32-gen.o : nlm32-gen.c libnlm.h libbfd.h \
525 $(BFD_H) $(INCDIR)/obstack.h nlm-target.h
526 nlm32-i386.o : nlm32-i386.c libnlm.h libbfd.h \
527 $(BFD_H) $(INCDIR)/obstack.h nlm-target.h
528 nlm64.o : nlm64.c nlmcode.h libnlm.h libbfd.h $(BFD_H) \
529 $(INCDIR)/obstack.h
530 nlm64-gen.o : nlm64-gen.c libnlm.h libbfd.h \
531 $(BFD_H) $(INCDIR)/obstack.h nlm-target.h
532
533 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
534
This page took 0.047559 seconds and 5 git commands to generate.