* Makefile.in (clean): Remove bfd.h and stmp-bfd.h.
[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 BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \
73 archures.o core.o section.o format.o syms.o reloc.o init.o \
74 ctor.o seclet.o coffgen.o reloc16.o
75
76 BFD_MACHINES = cpu-h8300.o cpu-i960.o cpu-sparc.o cpu-m68k.o cpu-m88k.o \
77 cpu-vax.o cpu-mips.o cpu-a29k.o cpu-i386.o cpu-rs6000.o cpu-hppa.o \
78 cpu-z8k.o cpu-we32k.o cpu-h8500.o cpu-alpha.o cpu-sh.o
79
80 BFD32_BACKENDS = \
81 elf.o \
82 elf32.o elf32-sparc.o elf32-i386.o elf32-i860.o elf32-m68k.o \
83 elf32-hppa.o elf32-mips.o elf32-m88k.o elf32-generic.o \
84 aout32.o sunos.o newsos3.o mipsbsd.o aout-adobe.o \
85 i386aout.o i386bsd.o i386linux.o i386lynx.o \
86 hp300hpux.o bout.o \
87 coff-i960.o coff-a29k.o coff-m68k.o coff-i386.o coff-m88k.o \
88 coff-rs6000.o coff-h8300.o coff-h8500.o coff-z8k.o coff-we32k.o \
89 coff-mips.o coff-msym.o coff-alpha.o coff-sh.o \
90 hppa.o oasys.o ieee.o srec.o \
91 stab-syms.o
92
93 BFD64_BACKENDS = \
94 elf64.o elf64-generic.o \
95 aout64.o demo64.o
96
97 OPTIONAL_BACKENDS = trad-core.o
98
99 # These are defined by configure.in:
100 # WORDSIZE=32
101 # BFD_BACKENDS = $(BFD32_BACKENDS)
102 # Change this (to MINIMIZE=1) to save space in executables.
103 # Currently, all this does is control the target_vector in targets.c.
104 # MINIMIZE=0
105
106 all:
107
108 #### host and target dependent Makefile fragments come in here.
109 ###
110
111 FLAGS_TO_PASS = \
112 "prefix=$(prefix)" \
113 "exec_prefix=$(exec_prefix)" \
114 "against=$(against)" \
115 "AR=$(AR)" \
116 "AR_FLAGS=$(AR_FLAGS)" \
117 "CC=$(CC)" \
118 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
119 "CFLAGS=$(CFLAGS)" \
120 "RANLIB=$(RANLIB)" \
121 "MAKEINFO=$(MAKEINFO)" \
122 "INSTALL=$(INSTALL)" \
123 "INSTALL_DATA=$(INSTALL_DATA)" \
124 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
125 "BISON=$(BISON)"
126
127 .c.o:
128 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $<
129
130 # C source files that correspond to .o's.
131 CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \
132 archures.c coff-i386.c aout64.c aout32.c sunos.c demo64.c \
133 coff-i960.c srec.c tekhex.c oasys.c ieee.c coff-m68k.c \
134 coff-a29k.c coff-rs6000.c coff-msym.c coffgen.c format.c \
135 section.c core.c syms.c stab-syms.c reloc.c init.c ctor.c \
136 seclet.c coff-m88k.c coff-mips.c coff-sh.c trad-core.c newsos3.c \
137 i386aout.c i386linux.c bout.c aout-adobe.c coff-we32k.c \
138 i386bsd.c cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c \
139 cpu-m88k.c cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c \
140 cpu-rs6000.c coff-h8300.c hppa.c cpu-hppa.c cpu-we32k.c reloc16.c \
141 mipsbsd.c cpu-sh.c \
142 elf32.c elf32-sparc.c elf32-i386.c elf32-i860.c elf32-m68k.c \
143 elf32-hppa.c elf32-m88k.c elf32-mips.c elf32-generic.c \
144 elf64.c \
145 coff-alpha.c cpu-alpha.c \
146 hp300hpux.c i386lynx.c
147
148 STAGESTUFF = $(TARGETLIB) $(OFILES)
149
150 all: Makefile $(TARGETLIB)
151 @$(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
152
153 .NOEXPORT:
154 MAKEOVERRIDES=
155
156 check:
157 installcheck:
158
159 info dvi : force
160 @$(MAKE) subdir_do DO=$@ "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
161
162 clean-info:
163 @$(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
164
165 install-info: force
166 @$(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
167
168 # HDEPFILES comes from the host config; TDEPFILES from the target config.
169 OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) $(HDEPFILES) $(TDEPFILES)
170
171 $(TARGETLIB): $(OFILES)
172 rm -f $(TARGETLIB)
173 $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
174 $(RANLIB) $(TARGETLIB)
175
176 # When compiling archures.c and targets.c, supply the default target
177 # info from configure.
178
179
180 targets.o: targets.c Makefile
181 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $<
182
183 archures.o: archures.c Makefile
184 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $<
185
186 subdir_do: force
187 @for i in $(DODIRS); do \
188 if [ -d ./$$i ] ; then \
189 if (cd ./$$i; \
190 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
191 else exit 1 ; fi ; \
192 else true ; fi ; \
193 done
194
195 tags etags: TAGS
196
197 TAGS: force
198 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
199
200 do_mostlyclean:
201 rm -f *.o *~ core *.E *.p *.ip aout-params.h gen-aout
202 do_clean: do_mostlyclean
203 rm -f libbfd.a TAGS bfd.h stmp-bfd.h
204 do_distclean: do_clean
205 rm -f Makefile config.status sysdep.h
206 do_realclean: do_distclean
207 rm -f $(srcdir)/libcoff.h $(srcdir)/libbfd.h $(BFDIN_H)
208
209 mostlyclean: do_mostlyclean
210 $(MAKE) subdir_do DO=mostlyclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
211 clean: do_clean
212 $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
213 distclean:
214 $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
215 make do_distclean
216 clobber realclean:
217 $(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
218 make do_realclean
219
220 # Mark everything as depending on config.status, since the timestamp on
221 # sysdep.h might actually move backwards if we reconfig and relink it
222 # to a different hosts/h-xxx.h file. This will force a recompile anyway.
223 RECONFIG = config.status
224 $(BFD_LIBS): libbfd.h $(BFD_H) $(RECONFIG)
225 $(BFD_MACHINES): libbfd.h $(BFD_H) $(RECONFIG)
226 $(BFD_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
227 $(OPTIONAL_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
228
229 # Get around a Sun Make bug in SunOS 4.1.1 with VPATH
230 cpu-i386.o:cpu-i386.c
231 cpu-z8k.o: cpu-z8k.c
232 cpu-h8500.o: cpu-h8500.c
233 cpu-we32k.o: cpu-we32k.c
234
235 saber:
236 #suppress 65 on bfd_map_over_sections
237 #suppress 66 on bfd_map_over_sections
238 #suppress 67 on bfd_map_over_sections
239 #suppress 68 on bfd_map_over_sections
240 #suppress 69 on bfd_map_over_sections
241 #suppress 70 on bfd_map_over_sections
242 #suppress 110 in bfd_map_over_sections
243 #suppress 112 in bfd_map_over_sections
244 #suppress 530
245 #suppress 590 in swap_exec_header
246 #suppress 590 in _bfd_dummy_core_file_matches_executable_p
247 #suppress 590 in bfd_dont_truncate_arname
248 #suppress 590 on ignore
249 #suppress 590 on abfd
250 #setopt load_flags $(CFLAGS)
251 #load $(CFILES)
252
253
254 #-----------------------------------------------------------------------------
255 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
256 #
257 # 'VERSION' file must be present and contain a string of the form "x.y"
258 #-----------------------------------------------------------------------------
259
260 ver960.c: FORCE
261 rm -f ver960.c
262 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
263
264
265 # This target should be invoked before building a new release.
266 # 'VERSION' file must be present and contain a string of the form "x.y"
267 #
268 roll:
269 @V=`cat VERSION` ; \
270 MAJ=`sed 's/\..*//' VERSION` ; \
271 MIN=`sed 's/.*\.//' VERSION` ; \
272 V=$$MAJ.`expr $$MIN + 1` ; \
273 rm -f VERSION ; \
274 echo $$V >VERSION ; \
275 echo Version $$V
276
277 # Dummy target to force execution of dependent targets.
278 #
279 force:
280
281 install:
282 $(INSTALL_DATA) libbfd.a $(libdir)/libbfd.a
283 $(RANLIB) $(libdir)/libbfd.a
284 # Install BFD include file, and others that it needs. Install them
285 # both in GCC's include directory, and in the system include dir
286 # if configured as $(oldincludedir) -- which it usually isnt.
287 $(INSTALL_DATA) $(BFD_H) $(includedir)/bfd.h
288 $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(includedir)/ansidecl.h
289 $(INSTALL_DATA) $(INCDIR)/obstack.h $(includedir)/obstack.h
290 -if [ -z "$(oldincludedir)" ] ; then true ; \
291 else if [ -d $(oldincludedir) ] ; then true ; \
292 else mkdir $(oldincludedir) ; \
293 fi ; \
294 $(INSTALL_DATA) $(BFD_H) $(oldincludedir)/bfd.h;\
295 $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(oldincludedir)/ansidecl.h;\
296 $(INSTALL_DATA) $(INCDIR)/obstack.h $(oldincludedir)/obstack.h;\
297 fi
298 @$(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
299
300
301 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
302 $(SHELL) ./config.status
303
304 dep: $(CFILES)
305 mkdep $(CFLAGS) $?
306
307 host-aout.o: Makefile
308
309 # The following program can be used to generate a simple config file
310 # which can be folded into an h-XXX file for a new host, with some editing.
311 aout-params.h: gen-aout
312 ./gen-aout > aout-params.h
313 gen-aout: $(srcdir)/gen-aout.c Makefile
314 $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
315
316 BFDIN_H= $(srcdir)/bfd-in2.h
317
318 $(BFD_H): stmp-bfd.h ; @true
319
320 # The file ../include/bfd.h is from earlier attempts to get this right.
321 # If the file is still there, kill it.
322 stmp-bfd.h : $(BFDIN_H) Makefile
323 rm -f bfd.h2 64 ../include/bfd.h
324 -grep HOST_64_BIT sysdep.h > 64
325 sed -e 's/@WORDSIZE@/$(WORDSIZE)/' -e '/64-bit.*sysdep.h/ r 64' < $(BFDIN_H) > bfd.h2
326 $(srcdir)/../move-if-change bfd.h2 $(BFD_H)
327 rm -f 64
328 touch stmp-bfd.h
329
330 # Could really use a "copy-if-change"...
331 headers:
332 (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS))
333 cp $(docdir)/bfd.h bfd.h-new
334 $(srcdir)/../move-if-change bfd.h-new $(BFDIN_H)
335 cp $(docdir)/libbfd.h libbfd.h-new
336 $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
337 cp $(docdir)/libcoff.h libcoff.h-new
338 $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
339
340 bfd.info:
341 (cd $(docdir); $(MAKE) bfd.info $(FLAGS_TO_PASS))
342
343 bfd.dvi:
344 (cd $(docdir); $(MAKE) bfd.dvi $(FLAGS_TO_PASS))
345
346 bfd.ps:
347 (cd $(docdir); $(MAKE) bfd.ps $(FLAGS_TO_PASS))
348
349 # What appears below is generated by a hacked mkdep using gcc -MM.
350
351 # DO NOT DELETE THIS LINE -- mkdep uses it.
352 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
353
354 libbfd.o : libbfd.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
355 opncls.o : opncls.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
356 bfd.o : bfd.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
357 $(INCDIR)/coff/sym.h libecoff.h
358 archive.o : archive.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
359 $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h
360 targets.o : targets.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
361 cache.o : cache.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
362 archures.o : archures.c $(BFD_H) $(INCDIR)/obstack.h
363 aout64.o : aout64.c
364 aout32.o : aout32.c aoutx.h $(BFD_H) $(INCDIR)/ansidecl.h \
365 $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \
366 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
367 sunos.o : sunos.c aoutf1.h $(BFD_H) $(INCDIR)/obstack.h \
368 libaout.h libbfd.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
369 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
370 demo64.o : demo64.c
371
372 srec.o : srec.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
373 oasys.o : oasys.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
374 $(INCDIR)/oasys.h liboasys.h
375 ieee.o : ieee.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
376 $(INCDIR)/ieee.h libieee.h
377 coff-h8300.o: coff-h8300.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
378 $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
379 coffswap.h seclet.h
380 coff-h8500.o: coff-h8500.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
381 $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
382 coffswap.h seclet.h
383 coff-a29k.o: coff-a29k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
384 $(INCDIR)/coff/a29k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
385 coffswap.h seclet.h
386 coff-i386.o: coff-i386.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
387 $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
388 coffswap.h seclet.h
389 coff-i960.o: coff-i960.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
390 $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
391 coffswap.h seclet.h
392 coff-m68k.o: coff-m68k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
393 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
394 coffswap.h seclet.h
395 coff-m88k.o: coff-m88k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
396 $(INCDIR)/coff/m88k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
397 coffswap.h seclet.h
398 coff-mips.o: coff-mips.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
399 $(INCDIR)/coff/mips.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
400 coffswap.h seclet.h libecoff.h
401 coff-rs6000.o: coff-rs6000.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
402 $(INCDIR)/coff/rs6000.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
403 coffswap.h seclet.h
404 coff-z8k.o: coff-z8k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
405 $(INCDIR)/coff/z8k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
406 coffswap.h seclet.h
407 coff-we32k.o: coff-we32k.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
408 $(INCDIR)/coff/we32k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h \
409 coffswap.h seclet.h
410 coffgen.o: coffgen.c $(BFD_H) libbfd.h $(INCDIR)/coff/internal.h \
411 libcoff.h
412 reloc16.o: reloc16.c $(BFD_H) libbfd.h $(INCDIR)/coff/internal.h \
413 libcoff.h seclet.h
414 format.o : format.c $(BFD_H) \
415 $(INCDIR)/obstack.h libbfd.h
416 section.o : section.c $(BFD_H) \
417 $(INCDIR)/obstack.h libbfd.h
418 core.o : core.c $(BFD_H) \
419 $(INCDIR)/obstack.h libbfd.h
420 syms.o : syms.c $(BFD_H) \
421 $(INCDIR)/obstack.h libbfd.h
422 syms.o : stab-syms.c
423 reloc.o : reloc.c $(BFD_H) \
424 $(INCDIR)/obstack.h libbfd.h
425
426 trad-core.o : trad-core.c $(BFD_H) $(INCDIR)/obstack.h \
427 libbfd.h libaout.h
428
429 coff-msym.o: coff-msym.c $(BFD_H) $(INCDIR)/coff/ecoff-ext.h \
430 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h
431
432 newsos3.o : newsos3.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
433 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
434 $(INCDIR)/aout/ar.h libaout.h
435 i386lynx.o : i386lynx.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
436 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
437 $(INCDIR)/aout/ar.h libaout.h
438 i386aout.o : i386aout.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
439 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
440 $(INCDIR)/aout/ar.h libaout.h
441 i386linux.o : i386linux.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
442 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
443 $(INCDIR)/aout/ar.h libaout.h
444 i386bsd.o : i386bsd.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
445 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
446 $(INCDIR)/aout/ar.h libaout.h
447 bout.o : bout.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h \
448 $(INCDIR)/bout.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h
449 mipsbsd.o : mipsbsd.c $(BFD_H) $(INCDIR)/obstack.h \
450 libbfd.h libaout.h
451 elf.o : elf.c libelf.h libbfd.h $(BFD_H) $(INCDIR)/obstack.h
452 elf32.o : elf32.c elfcode.h libelf.h libbfd.h $(BFD_H) \
453 $(INCDIR)/obstack.h
454 elf32-sparc.o : elf32-sparc.c libelf.h libbfd.h $(BFD_H) \
455 $(INCDIR)/obstack.h
456 elf32-m68k.o : elf32-m68k.c libelf.h libbfd.h $(BFD_H) \
457 $(INCDIR)/obstack.h
458 elf32-i860.o : elf32-i860.c libelf.h libbfd.h $(BFD_H) \
459 $(INCDIR)/obstack.h
460 elf32-i386.o : elf32-i386.c libelf.h libbfd.h $(BFD_H) \
461 $(INCDIR)/obstack.h
462 elf32-hppa.o : elf32-hppa.c $(srcdir)/elf32-hppa.h libelf.h libbfd.h \
463 $(BFD_H) $(INCDIR)/obstack.h
464 elf32-m88k.o : elf32-m88k.c libelf.h libbfd.h \
465 $(BFD_H) $(INCDIR)/obstack.h
466 elf32-mips.o : elf32-mips.c libelf.h libbfd.h \
467 $(BFD_H) $(INCDIR)/obstack.h
468 elf32-generic.o : elf32-generic.c libelf.h libbfd.h \
469 $(BFD_H) $(INCDIR)/obstack.h
470 elf64.o : elf64.c elfcode.h libelf.h libbfd.h $(BFD_H) \
471 $(INCDIR)/obstack.h
472 elf64-generic.o : elf64-generic.c libelf.h libbfd.h \
473 $(BFD_H) $(INCDIR)/obstack.h
474
475 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
476