]>
Commit | Line | Data |
---|---|---|
252b5132 RH |
1 | ## Process this file with automake to generate Makefile.in |
2 | ||
3 | AUTOMAKE_OPTIONS = cygnus | |
4 | ||
5 | INCDIR = $(srcdir)/../include | |
6 | CSEARCH = -I. -I$(srcdir) -I$(INCDIR) | |
41b49281 | 7 | MKDEP = gcc -MM |
252b5132 RH |
8 | |
9 | SUBDIRS = doc po | |
10 | ||
11 | docdir = doc | |
12 | ||
13 | lib_LTLIBRARIES = libbfd.la | |
14 | ||
a2d91340 AC |
15 | WARN_CFLAGS = @WARN_CFLAGS@ |
16 | AM_CFLAGS = $(WARN_CFLAGS) | |
17 | ||
252b5132 RH |
18 | # bfd.h goes here, for now |
19 | BFD_H = bfd.h | |
20 | ||
21 | # Jim Kingdon notes: | |
22 | # Writing S-records should be included in all (or at least most) | |
23 | # *-*-coff, *-*-aout, etc., configurations, because people will want to | |
24 | # be able to use objcopy to create S-records. (S-records are not useful | |
25 | # for the debugger, so if you are downloading things as S-records you | |
26 | # need two copies of the executable, one to download and one for the | |
27 | # debugger). | |
28 | BFD_LIBS = \ | |
29 | archive.lo archures.lo bfd.lo cache.lo coffgen.lo corefile.lo \ | |
30 | format.lo init.lo libbfd.lo opncls.lo reloc.lo \ | |
31 | section.lo syms.lo targets.lo hash.lo linker.lo \ | |
32 | srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo | |
33 | ||
34 | BFD_LIBS_CFILES = \ | |
35 | archive.c archures.c bfd.c cache.c coffgen.c corefile.c \ | |
36 | format.c init.c libbfd.c opncls.c reloc.c \ | |
37 | section.c syms.c targets.c hash.c linker.c \ | |
38 | srec.c binary.c tekhex.c ihex.c stabs.c stab-syms.c | |
39 | ||
40 | # This list is alphabetized to make it easier to keep in sync | |
41 | # with the decls and initializer in archures.c. | |
42 | ALL_MACHINES = \ | |
43 | cpu-a29k.lo \ | |
44 | cpu-alpha.lo \ | |
45 | cpu-arc.lo \ | |
46 | cpu-arm.lo \ | |
adde6300 | 47 | cpu-avr.lo \ |
06c15ad7 | 48 | cpu-cris.lo \ |
252b5132 RH |
49 | cpu-d10v.lo \ |
50 | cpu-d30v.lo \ | |
51 | cpu-fr30.lo \ | |
52 | cpu-h8300.lo \ | |
53 | cpu-h8500.lo \ | |
54 | cpu-hppa.lo \ | |
800eeca4 | 55 | cpu-ia64.lo \ |
5b93d8bb | 56 | cpu-i370.lo \ |
252b5132 RH |
57 | cpu-i386.lo \ |
58 | cpu-i860.lo \ | |
59 | cpu-i960.lo \ | |
60 | cpu-m32r.lo \ | |
60bcf0fa NC |
61 | cpu-m68hc11.lo \ |
62 | cpu-m68hc12.lo \ | |
252b5132 RH |
63 | cpu-m68k.lo \ |
64 | cpu-m88k.lo \ | |
65 | cpu-m10200.lo \ | |
66 | cpu-m10300.lo \ | |
67 | cpu-mcore.lo \ | |
68 | cpu-mips.lo \ | |
69 | cpu-ns32k.lo \ | |
0bcb993b | 70 | cpu-pj.lo \ |
252b5132 RH |
71 | cpu-powerpc.lo \ |
72 | cpu-rs6000.lo \ | |
73 | cpu-sh.lo \ | |
74 | cpu-sparc.lo \ | |
75 | cpu-tic30.lo \ | |
81635ce4 | 76 | cpu-tic54x.lo \ |
252b5132 RH |
77 | cpu-tic80.lo \ |
78 | cpu-v850.lo \ | |
79 | cpu-vax.lo \ | |
80 | cpu-we32k.lo \ | |
81 | cpu-w65.lo \ | |
82 | cpu-z8k.lo | |
83 | ||
84 | ALL_MACHINES_CFILES = \ | |
85 | cpu-a29k.c \ | |
86 | cpu-alpha.c \ | |
87 | cpu-arc.c \ | |
88 | cpu-arm.c \ | |
adde6300 | 89 | cpu-avr.c \ |
06c15ad7 | 90 | cpu-cris.c \ |
252b5132 RH |
91 | cpu-d10v.c \ |
92 | cpu-d30v.c \ | |
93 | cpu-fr30.c \ | |
94 | cpu-h8300.c \ | |
95 | cpu-h8500.c \ | |
96 | cpu-hppa.c \ | |
800eeca4 | 97 | cpu-ia64.c \ |
5b93d8bb | 98 | cpu-i370.c \ |
252b5132 RH |
99 | cpu-i386.c \ |
100 | cpu-i860.c \ | |
101 | cpu-i960.c \ | |
102 | cpu-m32r.c \ | |
60bcf0fa NC |
103 | cpu-m68hc11.c \ |
104 | cpu-m68hc12.c \ | |
252b5132 RH |
105 | cpu-m68k.c \ |
106 | cpu-m88k.c \ | |
107 | cpu-m10200.c \ | |
108 | cpu-m10300.c \ | |
109 | cpu-mcore.c \ | |
110 | cpu-mips.c \ | |
111 | cpu-ns32k.c \ | |
0bcb993b | 112 | cpu-pj.c \ |
252b5132 RH |
113 | cpu-powerpc.c \ |
114 | cpu-rs6000.c \ | |
115 | cpu-sh.c \ | |
116 | cpu-sparc.c \ | |
117 | cpu-tic30.c \ | |
81635ce4 | 118 | cpu-tic54x.c \ |
252b5132 RH |
119 | cpu-tic80.c \ |
120 | cpu-v850.c \ | |
121 | cpu-vax.c \ | |
122 | cpu-we32k.c \ | |
123 | cpu-w65.c \ | |
124 | cpu-z8k.c | |
125 | ||
126 | # The .o files needed by all of the 32 bit vectors that are configured into | |
127 | # target_vector in targets.c if configured with --enable-targets=all. | |
128 | BFD32_BACKENDS = \ | |
129 | aout-adobe.lo \ | |
130 | aout-arm.lo \ | |
06c15ad7 | 131 | aout-cris.lo \ |
252b5132 RH |
132 | aout-ns32k.lo \ |
133 | aout-sparcle.lo \ | |
134 | aout-tic30.lo \ | |
135 | aout0.lo \ | |
136 | aout32.lo \ | |
021e3cc0 | 137 | armnetbsd.lo \ |
252b5132 RH |
138 | bout.lo \ |
139 | cf-i386lynx.lo \ | |
140 | cf-m68klynx.lo \ | |
141 | cf-sparclynx.lo \ | |
142 | coff-a29k.lo \ | |
143 | coff-apollo.lo \ | |
144 | coff-arm.lo \ | |
145 | coff-aux.lo \ | |
146 | coff-h8300.lo \ | |
147 | coff-h8500.lo \ | |
148 | coff-i386.lo \ | |
149 | coff-go32.lo \ | |
150 | coff-i860.lo \ | |
151 | coff-i960.lo \ | |
152 | coff-m68k.lo \ | |
153 | coff-m88k.lo \ | |
154 | coff-mips.lo \ | |
155 | coff-pmac.lo \ | |
156 | coff-rs6000.lo \ | |
157 | coff-sh.lo \ | |
158 | coff-sparc.lo \ | |
159 | coff-stgo32.lo \ | |
160 | coff-svm68k.lo \ | |
161 | coff-tic30.lo \ | |
81635ce4 | 162 | coff-tic54x.lo \ |
252b5132 RH |
163 | coff-tic80.lo \ |
164 | coff-u68k.lo \ | |
165 | coff-we32k.lo \ | |
166 | coff-w65.lo \ | |
167 | coff-z8k.lo \ | |
168 | cofflink.lo \ | |
4a54b465 | 169 | dwarf1.lo \ |
252b5132 RH |
170 | dwarf2.lo \ |
171 | ecoff.lo \ | |
172 | ecofflink.lo \ | |
85e22c7e | 173 | efi-app-ia32.lo \ |
252b5132 RH |
174 | elf.lo \ |
175 | elf32-arc.lo \ | |
176 | elfarm-oabi.lo \ | |
177 | elfarm-nabi.lo \ | |
adde6300 | 178 | elf32-avr.lo \ |
06c15ad7 | 179 | elf32-cris.lo \ |
252b5132 RH |
180 | elf32-d10v.lo \ |
181 | elf32-d30v.lo \ | |
182 | elf32-fr30.lo \ | |
183 | elf32-gen.lo \ | |
e0afaebd | 184 | elf32-hppa.lo \ |
5b93d8bb | 185 | elf32-i370.lo \ |
252b5132 RH |
186 | elf32-i386.lo \ |
187 | elf32-i860.lo \ | |
b2ef150d | 188 | elf32-i960.lo \ |
252b5132 | 189 | elf32-m32r.lo \ |
60bcf0fa NC |
190 | elf32-m68hc11.lo \ |
191 | elf32-m68hc12.lo \ | |
252b5132 RH |
192 | elf32-m68k.lo \ |
193 | elf32-m88k.lo \ | |
194 | elf-m10200.lo \ | |
195 | elf-m10300.lo \ | |
196 | elf32-mcore.lo \ | |
197 | elf32-mips.lo \ | |
0bcb993b | 198 | elf32-pj.lo \ |
252b5132 RH |
199 | elf32-ppc.lo \ |
200 | elf32-sh.lo \ | |
201 | elf32-sparc.lo \ | |
202 | elf32-v850.lo \ | |
203 | elf32.lo \ | |
204 | elflink.lo \ | |
10ab5357 NC |
205 | epoc-pe-arm.lo \ |
206 | epoc-pei-arm.lo \ | |
252b5132 RH |
207 | hp300bsd.lo \ |
208 | hp300hpux.lo \ | |
209 | som.lo \ | |
210 | i386aout.lo \ | |
211 | i386bsd.lo \ | |
212 | i386dynix.lo \ | |
213 | i386freebsd.lo \ | |
214 | i386linux.lo \ | |
215 | i386lynx.lo \ | |
216 | i386msdos.lo \ | |
217 | i386netbsd.lo \ | |
218 | i386mach3.lo \ | |
219 | i386os9k.lo \ | |
220 | ieee.lo \ | |
221 | m68k4knetbsd.lo \ | |
222 | m68klinux.lo \ | |
223 | m68klynx.lo \ | |
224 | m68knetbsd.lo \ | |
225 | m88kmach3.lo \ | |
226 | mipsbsd.lo \ | |
227 | newsos3.lo \ | |
228 | nlm.lo \ | |
229 | nlm32-i386.lo \ | |
230 | nlm32-sparc.lo \ | |
231 | nlm32-ppc.lo \ | |
232 | nlm32.lo \ | |
233 | ns32knetbsd.lo \ | |
234 | oasys.lo \ | |
235 | pc532-mach.lo \ | |
236 | pe-arm.lo \ | |
237 | pei-arm.lo \ | |
238 | pe-i386.lo \ | |
239 | pei-i386.lo \ | |
240 | pe-mcore.lo \ | |
241 | pei-mcore.lo \ | |
242 | pe-ppc.lo \ | |
243 | pei-ppc.lo \ | |
17505c5c NC |
244 | pe-sh.lo \ |
245 | pei-sh.lo \ | |
246 | pe-mips.lo \ | |
247 | pei-mips.lo \ | |
277d1b5e | 248 | peigen.lo \ |
252b5132 RH |
249 | ppcboot.lo \ |
250 | reloc16.lo \ | |
251 | riscix.lo \ | |
252 | sparclinux.lo \ | |
253 | sparclynx.lo \ | |
254 | sparcnetbsd.lo \ | |
255 | sunos.lo \ | |
256 | vaxnetbsd.lo \ | |
257 | versados.lo \ | |
258 | vms.lo \ | |
259 | vms-gsd.lo \ | |
260 | vms-hdr.lo \ | |
261 | vms-misc.lo \ | |
262 | vms-tir.lo \ | |
263 | xcofflink.lo | |
264 | ||
265 | BFD32_BACKENDS_CFILES = \ | |
266 | aout-adobe.c \ | |
267 | aout-arm.c \ | |
06c15ad7 | 268 | aout-cris.c \ |
252b5132 RH |
269 | aout-ns32k.c \ |
270 | aout-sparcle.c \ | |
271 | aout-tic30.c \ | |
272 | aout0.c \ | |
273 | aout32.c \ | |
021e3cc0 | 274 | armnetbsd.c \ |
252b5132 RH |
275 | bout.c \ |
276 | cf-i386lynx.c \ | |
277 | cf-m68klynx.c \ | |
278 | cf-sparclynx.c \ | |
279 | coff-a29k.c \ | |
280 | coff-apollo.c \ | |
281 | coff-arm.c \ | |
282 | coff-aux.c \ | |
283 | coff-h8300.c \ | |
284 | coff-h8500.c \ | |
285 | coff-i386.c \ | |
286 | coff-i860.c \ | |
287 | coff-go32.c \ | |
288 | coff-i960.c \ | |
289 | coff-m68k.c \ | |
290 | coff-m88k.c \ | |
291 | coff-mips.c \ | |
292 | coff-pmac.c \ | |
293 | coff-rs6000.c \ | |
294 | coff-sh.c \ | |
295 | coff-sparc.c \ | |
296 | coff-stgo32.c \ | |
297 | coff-svm68k.c \ | |
298 | coff-tic30.c \ | |
81635ce4 | 299 | coff-tic54x.c \ |
252b5132 RH |
300 | coff-tic80.c \ |
301 | coff-u68k.c \ | |
302 | coff-we32k.c \ | |
303 | coff-w65.c \ | |
304 | coff-z8k.c \ | |
305 | cofflink.c \ | |
4a54b465 | 306 | dwarf1.c \ |
252b5132 RH |
307 | dwarf2.c \ |
308 | ecoff.c \ | |
309 | ecofflink.c \ | |
85e22c7e | 310 | efi-app-ia32.c \ |
252b5132 RH |
311 | elf.c \ |
312 | elf32-arc.c \ | |
313 | elfarm-oabi.c \ | |
314 | elfarm-nabi.c \ | |
adde6300 | 315 | elf32-avr.c \ |
06c15ad7 | 316 | elf32-cris.c \ |
252b5132 RH |
317 | elf32-d10v.c \ |
318 | elf32-d30v.c \ | |
319 | elf32-fr30.c \ | |
320 | elf32-gen.c \ | |
3f9b03b5 | 321 | elf32-hppa.c \ |
5b93d8bb | 322 | elf32-i370.c \ |
252b5132 RH |
323 | elf32-i386.c \ |
324 | elf32-i860.c \ | |
b2ef150d | 325 | elf32-i960.c \ |
252b5132 RH |
326 | elf32-m32r.c \ |
327 | elf32-m68k.c \ | |
60bcf0fa NC |
328 | elf32-m68hc11.c \ |
329 | elf32-m68hc12.c \ | |
252b5132 RH |
330 | elf32-m88k.c \ |
331 | elf-m10200.c \ | |
332 | elf-m10300.c \ | |
333 | elf32-mcore.c \ | |
334 | elf32-mips.c \ | |
0bcb993b | 335 | elf32-pj.c \ |
252b5132 RH |
336 | elf32-ppc.c \ |
337 | elf32-sh.c \ | |
338 | elf32-sparc.c \ | |
339 | elf32-v850.c \ | |
340 | elf32.c \ | |
341 | elflink.c \ | |
10ab5357 NC |
342 | epoc-pe-arm.c \ |
343 | epoc-pei-arm.c \ | |
252b5132 RH |
344 | hp300bsd.c \ |
345 | hp300hpux.c \ | |
346 | som.c \ | |
347 | i386aout.c \ | |
348 | i386bsd.c \ | |
349 | i386dynix.c \ | |
350 | i386freebsd.c \ | |
351 | i386linux.c \ | |
352 | i386lynx.c \ | |
353 | i386msdos.c \ | |
354 | i386netbsd.c \ | |
355 | i386mach3.c \ | |
356 | i386os9k.c \ | |
357 | ieee.c \ | |
358 | m68k4knetbsd.c \ | |
359 | m68klinux.c \ | |
360 | m68klynx.c \ | |
361 | m68knetbsd.c \ | |
362 | m88kmach3.c \ | |
363 | mipsbsd.c \ | |
364 | newsos3.c \ | |
365 | nlm.c \ | |
366 | nlm32-i386.c \ | |
367 | nlm32-sparc.c \ | |
368 | nlm32-ppc.c \ | |
369 | nlm32.c \ | |
370 | ns32knetbsd.c \ | |
371 | oasys.c \ | |
372 | pc532-mach.c \ | |
373 | pe-arm.c \ | |
374 | pei-arm.c \ | |
375 | pe-i386.c \ | |
376 | pei-i386.c \ | |
377 | pe-mcore.c \ | |
378 | pei-mcore.c \ | |
379 | pe-ppc.c \ | |
380 | pei-ppc.c \ | |
17505c5c NC |
381 | pe-sh.c \ |
382 | pei-sh.c \ | |
383 | pe-mips.c \ | |
384 | pei-mips.c \ | |
277d1b5e | 385 | peigen.c \ |
252b5132 RH |
386 | ppcboot.c \ |
387 | reloc16.c \ | |
388 | riscix.c \ | |
389 | sparclinux.c \ | |
390 | sparclynx.c \ | |
391 | sparcnetbsd.c \ | |
392 | sunos.c \ | |
393 | vaxnetbsd.c \ | |
394 | versados.c \ | |
395 | vms.c \ | |
396 | vms-gsd.c \ | |
397 | vms-hdr.c \ | |
398 | vms-misc.c \ | |
399 | vms-tir.c \ | |
400 | xcofflink.c | |
401 | ||
402 | # The .o files needed by all of the 64 bit vectors that are configured into | |
403 | # target_vector in targets.c if configured with --enable-targets=all | |
404 | # and --enable-64-bit-bfd. | |
405 | BFD64_BACKENDS = \ | |
406 | aout64.lo \ | |
407 | coff-alpha.lo \ | |
14958a43 | 408 | coff64-rs6000.lo \ |
252b5132 | 409 | demo64.lo \ |
85e22c7e | 410 | efi-app-ia64.lo \ |
252b5132 | 411 | elf64-alpha.lo \ |
d403336c | 412 | elf64-hppa.lo \ |
800eeca4 | 413 | elf64-ia64.lo \ |
252b5132 RH |
414 | elf64-gen.lo \ |
415 | elf64-mips.lo \ | |
416 | elf64-sparc.lo \ | |
417 | elf64.lo \ | |
418 | nlm32-alpha.lo \ | |
419 | nlm64.lo | |
420 | ||
421 | BFD64_BACKENDS_CFILES = \ | |
422 | aout64.c \ | |
423 | coff-alpha.c \ | |
14958a43 | 424 | coff64-rs6000.c \ |
252b5132 | 425 | demo64.c \ |
85e22c7e | 426 | efi-app-ia64.c \ |
252b5132 | 427 | elf64-alpha.c \ |
d403336c | 428 | elf64-hppa.c \ |
800eeca4 | 429 | elf64-ia64.c \ |
252b5132 RH |
430 | elf64-gen.c \ |
431 | elf64-mips.c \ | |
432 | elf64-sparc.c \ | |
433 | elf64.c \ | |
434 | nlm32-alpha.c \ | |
435 | nlm64.c | |
436 | ||
437 | OPTIONAL_BACKENDS = \ | |
438 | aix386-core.lo \ | |
439 | hpux-core.lo \ | |
440 | irix-core.lo \ | |
441 | lynx-core.lo \ | |
442 | osf-core.lo \ | |
443 | sco5-core.lo \ | |
444 | trad-core.lo \ | |
445 | cisco-core.lo | |
446 | ||
447 | OPTIONAL_BACKENDS_CFILES = \ | |
448 | aix386-core.c \ | |
449 | hpux-core.c \ | |
450 | irix-core.c \ | |
451 | lynx-core.c \ | |
452 | osf-core.c \ | |
453 | sco5-core.c \ | |
454 | trad-core.c \ | |
455 | cisco-core.c | |
456 | ||
457 | # These are defined by configure.in: | |
458 | WORDSIZE = @wordsize@ | |
459 | ALL_BACKENDS = @all_backends@ | |
460 | BFD_BACKENDS = @bfd_backends@ | |
461 | BFD_MACHINES = @bfd_machines@ | |
462 | TDEFAULTS = @tdefaults@ | |
463 | ||
464 | INCLUDES = -D_GNU_SOURCE @HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) -I$(srcdir)/../intl -I../intl | |
465 | ||
466 | # C source files that correspond to .o's. | |
467 | CFILES = \ | |
468 | $(BFD_LIBS_CFILES) \ | |
469 | $(ALL_MACHINES_CFILES) \ | |
470 | $(BFD32_BACKENDS_CFILES) \ | |
471 | $(BFD64_BACKENDS_CFILES) \ | |
472 | $(OPTIONAL_BACKENDS_CFILES) | |
473 | ||
474 | ## This is a list of all .h files which are in the source tree. | |
475 | SOURCE_HFILES = \ | |
3f9b03b5 AM |
476 | aout-target.h aoutf1.h aoutx.h coffcode.h coffswap.h ecoffswap.h \ |
477 | elf-bfd.h elf-hppa.h elf32-arm.h elf32-hppa.h elf64-hppa.h \ | |
478 | elfcode.h elfcore.h elflink.h freebsd.h genlink.h go32stub.h \ | |
edd21aca | 479 | libaout.h libbfd.h libcoff.h libecoff.h libhppa.h \ |
3f9b03b5 | 480 | libieee.h libnlm.h liboasys.h libpei.h netbsd.h nlm-target.h \ |
2c38bc20 | 481 | nlmcode.h nlmswap.h ns32k.h peicode.h som.h vms.h xcoff-target.h |
252b5132 RH |
482 | |
483 | HFILES = \ | |
484 | elf32-target.h elf64-target.h targmatch.h \ | |
485 | $(SOURCE_HFILES) | |
486 | ||
487 | POTFILES = $(CFILES) $(SOURCE_HFILES) | |
488 | ||
489 | po/POTFILES.in: @MAINT@ Makefile | |
490 | for file in $(POTFILES); do echo $$file; done | sort > tmp \ | |
491 | && mv tmp $(srcdir)/po/POTFILES.in | |
492 | ||
493 | diststuff: info | |
494 | ||
495 | # Various kinds of .o files to put in libbfd.a: | |
496 | # BFD_BACKENDS Routines the configured targets need. | |
497 | # BFD_MACHINES Architecture-specific routines the configured targets need. | |
498 | # COREFILE Core file routines for a native configuration | |
499 | OFILES = $(BFD_BACKENDS) $(BFD_MACHINES) @COREFILE@ | |
500 | ||
501 | stamp-ofiles: Makefile | |
502 | rm -f tofiles | |
503 | f=""; \ | |
504 | for i in $(OFILES) ; do \ | |
505 | case " $$f " in \ | |
506 | *" $$i "*) ;; \ | |
507 | *) f="$$f $$i" ;; \ | |
508 | esac ; \ | |
509 | done ; \ | |
510 | echo $$f > tofiles | |
511 | $(SHELL) $(srcdir)/../move-if-change tofiles ofiles | |
512 | touch stamp-ofiles | |
513 | ||
514 | ofiles: stamp-ofiles ; @true | |
515 | ||
516 | libbfd_la_SOURCES = $(BFD_LIBS_CFILES) | |
517 | libbfd_la_DEPENDENCIES = $(OFILES) ofiles | |
518 | libbfd_la_LIBADD = `cat ofiles` @WIN32LIBADD@ | |
519 | libbfd_la_LDFLAGS = -release $(VERSION) @WIN32LDFLAGS@ | |
520 | ||
521 | # libtool will build .libs/libbfd.a. We create libbfd.a in the build | |
522 | # directory so that we don't have to convert all the programs that use | |
523 | # libbfd.a simultaneously. This is a hack which should be removed if | |
524 | # everything else starts using libtool. FIXME. | |
525 | ||
526 | noinst_LIBRARIES = libbfd.a | |
527 | libbfd_a_SOURCES = | |
528 | ||
529 | stamp-lib: libbfd.la | |
e56f75e9 ILT |
530 | libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \ |
531 | if [ -f $$libtooldir/libbfd.a ]; then \ | |
532 | cp $$libtooldir/libbfd.a libbfd.tmp; \ | |
252b5132 RH |
533 | $(SHELL) $(srcdir)/../move-if-change libbfd.tmp libbfd.a; \ |
534 | else true; fi | |
535 | touch stamp-lib | |
536 | ||
537 | libbfd.a: stamp-lib ; @true | |
538 | ||
539 | # This file holds an array associating configuration triplets and | |
540 | # vector names. It is built from config.bfd. It is not compiled by | |
541 | # itself, but is included by targets.c. | |
542 | targmatch.h: config.bfd targmatch.sed | |
543 | rm -f targmatch.h | |
544 | sed -f $(srcdir)/targmatch.sed < $(srcdir)/config.bfd > targmatch.new | |
545 | mv -f targmatch.new targmatch.h | |
546 | ||
547 | # When compiling archures.c and targets.c, supply the default target | |
548 | # info from configure. | |
549 | ||
550 | targets.lo: targets.c config.status | |
551 | $(LIBTOOL) --mode=compile $(COMPILE) -c $(TDEFAULTS) $(srcdir)/targets.c | |
552 | ||
553 | archures.lo: archures.c config.status | |
554 | $(LIBTOOL) --mode=compile $(COMPILE) -c $(TDEFAULTS) $(srcdir)/archures.c | |
555 | ||
556 | elf32-target.h : elfxx-target.h | |
557 | rm -f elf32-target.h | |
558 | sed -e s/NN/32/g < $(srcdir)/elfxx-target.h > elf32-target.new | |
559 | mv -f elf32-target.new elf32-target.h | |
560 | ||
561 | elf64-target.h : elfxx-target.h | |
562 | rm -f elf64-target.h | |
563 | sed -e s/NN/64/g < $(srcdir)/elfxx-target.h > elf64-target.new | |
564 | mv -f elf64-target.new elf64-target.h | |
565 | ||
566 | BFD_H_DEPS= $(INCDIR)/ansidecl.h | |
567 | LOCAL_H_DEPS= libbfd.h sysdep.h config.h | |
568 | $(BFD_LIBS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS) | |
569 | $(BFD_MACHINES): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS) | |
570 | $(BFD_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS) | |
571 | $(OPTIONAL_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS) | |
572 | ||
573 | # Install BFD include file, and others that it needs. | |
574 | install-data-local: $(BFD_H) | |
575 | @$(NORMAL_INSTALL) | |
576 | $(mkinstalldirs) $(includedir) | |
577 | $(INSTALL_DATA) $(BFD_H) $(includedir)/bfd.h | |
578 | $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(includedir)/ansidecl.h | |
579 | $(INSTALL_DATA) $(INCDIR)/bfdlink.h $(includedir)/bfdlink.h | |
580 | ||
74eeebea ILT |
581 | # Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES). |
582 | DEP: dep.sed $(CFILES) $(HFILES) bfd.h | |
583 | rm -f DEP1 | |
41b49281 | 584 | $(MAKE) MKDEP="$(MKDEP)" DEP1 |
0bdaf48b AM |
585 | sed -f dep.sed < DEP1 > DEPA |
586 | echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA | |
587 | if grep ' /' DEPA > /dev/null 2> /dev/null; then \ | |
1581f8c9 AM |
588 | echo 'make DEP failed!'; exit 1; \ |
589 | else \ | |
0bdaf48b | 590 | mv -f DEPA $@; \ |
1581f8c9 | 591 | fi |
41b49281 | 592 | |
74eeebea | 593 | DEP1: $(CFILES) |
74eeebea | 594 | echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2 |
41b49281 AM |
595 | echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2 |
596 | $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2 | |
597 | mv -f DEP2 $@ | |
252b5132 RH |
598 | |
599 | dep.sed: dep-in.sed config.status | |
600 | sed <$(srcdir)/dep-in.sed >dep.sed \ | |
601 | -e 's!@BFD_H@!$(BFD_H)!' \ | |
602 | -e 's!@INCDIR@!$(INCDIR)!' \ | |
603 | -e 's!@SRCDIR@!$(srcdir)!' | |
604 | ||
74eeebea | 605 | dep: DEP |
252b5132 | 606 | sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile |
74eeebea | 607 | cat DEP >> tmp-Makefile |
252b5132 RH |
608 | $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile |
609 | ||
74eeebea | 610 | dep-in: DEP |
252b5132 | 611 | sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in |
74eeebea | 612 | cat DEP >> tmp-Makefile.in |
252b5132 RH |
613 | $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in |
614 | ||
74eeebea | 615 | dep-am: DEP |
252b5132 | 616 | sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am |
74eeebea | 617 | cat DEP >> tmp-Makefile.am |
252b5132 RH |
618 | $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am |
619 | ||
620 | host-aout.lo: Makefile | |
621 | ||
622 | # The following program can be used to generate a simple config file | |
623 | # which can be folded into an h-XXX file for a new host, with some editing. | |
624 | aout-params.h: gen-aout | |
625 | ./gen-aout host > aout-params.h | |
626 | gen-aout: $(srcdir)/gen-aout.c Makefile | |
627 | $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c | |
628 | ||
629 | $(BFD_H): stmp-bfd-h ; @true | |
630 | ||
631 | stmp-bfd-h: bfd-in3.h | |
632 | rm -f bfd-tmp.h | |
633 | cp bfd-in3.h bfd-tmp.h | |
634 | $(SHELL) $(srcdir)/../move-if-change bfd-tmp.h $(BFD_H) | |
635 | rm -f bfd-tmp.h | |
636 | touch stmp-bfd-h | |
637 | ||
638 | BFD_H_FILES = bfd-in.h init.c opncls.c libbfd.c section.c archures.c \ | |
639 | reloc.c syms.c bfd.c archive.c corefile.c targets.c format.c | |
640 | LIBBFD_H_FILES = libbfd-in.h init.c libbfd.c cache.c reloc.c archures.c elf.c | |
641 | LIBCOFF_H_FILES = libcoff-in.h coffcode.h | |
642 | ||
643 | # Could really use a "copy-if-change"... | |
644 | headers: | |
645 | (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS)) | |
646 | cp $(docdir)/bfd.h bfd-in2.h-new | |
647 | $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h | |
648 | cp $(docdir)/libbfd.h libbfd.h-new | |
649 | $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h | |
650 | cp $(docdir)/libcoff.h libcoff.h-new | |
651 | $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h | |
652 | ||
653 | # We only rebuild the header files automatically if we have been | |
654 | # configured with --enable-maintainer-mode. | |
655 | ||
656 | $(srcdir)/bfd-in2.h: @MAINT@ stmp-bin2-h ; @true | |
657 | stmp-bin2-h: $(BFD_H_FILES) | |
658 | (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) bfd.h) | |
659 | cp $(docdir)/bfd.h bfd-in2.h-new | |
660 | $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h | |
661 | touch stmp-bin2-h | |
662 | ||
663 | $(srcdir)/libbfd.h: @MAINT@ stmp-lbfd-h ; @true | |
664 | stmp-lbfd-h: $(LIBBFD_H_FILES) | |
665 | (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) libbfd.h) | |
666 | cp $(docdir)/libbfd.h libbfd.h-new | |
667 | $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h | |
668 | touch stmp-lbfd-h | |
669 | ||
670 | $(srcdir)/libcoff.h: @MAINT@ stmp-lcoff-h ; @true | |
671 | stmp-lcoff-h: $(LIBCOFF_H_FILES) | |
672 | (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) libcoff.h) | |
673 | cp $(docdir)/libcoff.h libcoff.h-new | |
674 | $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h | |
675 | touch stmp-lcoff-h | |
676 | ||
677 | MOSTLYCLEANFILES = elf32-target.h elf64-target.h ofiles stamp-ofiles \ | |
678 | targmatch.h | |
679 | ||
0bdaf48b | 680 | CLEANFILES = bfd.h dep.sed stmp-bfd-h DEP DEPA DEP1 DEP2 libbfd.a stamp-lib \ |
252b5132 RH |
681 | stmp-bin2-h stmp-lbfd-h stmp-lcoff-h |
682 | ||
683 | # We want to rerun configure if config.bfd or configure.host change. | |
684 | config.status: $(srcdir)/configure $(srcdir)/config.bfd $(srcdir)/configure.host | |
685 | $(SHELL) ./config.status --recheck | |
686 | ||
687 | ||
252b5132 RH |
688 | # What appears below is generated by a hacked mkdep using gcc -MM. |
689 | ||
690 | # DO NOT DELETE THIS LINE -- mkdep uses it. | |
691 | # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. | |
2114f57b AM |
692 | archive.lo: archive.c $(INCDIR)/filenames.h $(INCDIR)/aout/ar.h \ |
693 | $(INCDIR)/aout/ranlib.h | |
694 | archures.lo: archures.c $(INCDIR)/filenames.h | |
695 | bfd.lo: bfd.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ | |
696 | $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ | |
697 | libcoff.h libecoff.h $(INCDIR)/coff/ecoff.h elf-bfd.h \ | |
698 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h | |
699 | cache.lo: cache.c $(INCDIR)/filenames.h | |
700 | coffgen.lo: coffgen.c $(INCDIR)/filenames.h $(INCDIR)/coff/internal.h \ | |
701 | libcoff.h $(INCDIR)/bfdlink.h | |
702 | corefile.lo: corefile.c $(INCDIR)/filenames.h | |
703 | format.lo: format.c $(INCDIR)/filenames.h | |
704 | init.lo: init.c $(INCDIR)/filenames.h | |
705 | libbfd.lo: libbfd.c $(INCDIR)/filenames.h | |
706 | opncls.lo: opncls.c $(INCDIR)/filenames.h $(INCDIR)/objalloc.h | |
707 | reloc.lo: reloc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h | |
708 | section.lo: section.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h | |
709 | syms.lo: syms.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
710 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def | |
711 | targets.lo: targets.c $(INCDIR)/filenames.h $(INCDIR)/fnmatch.h \ | |
712 | targmatch.h | |
713 | hash.lo: hash.c $(INCDIR)/filenames.h $(INCDIR)/objalloc.h | |
714 | linker.lo: linker.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
715 | genlink.h | |
716 | srec.lo: srec.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h | |
717 | binary.lo: binary.c $(INCDIR)/filenames.h | |
718 | tekhex.lo: tekhex.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h | |
719 | ihex.lo: ihex.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h | |
720 | stabs.lo: stabs.c $(INCDIR)/filenames.h $(INCDIR)/aout/stab_gnu.h \ | |
252b5132 | 721 | $(INCDIR)/aout/stab.def |
252b5132 RH |
722 | stab-syms.lo: stab-syms.c libaout.h $(INCDIR)/bfdlink.h \ |
723 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab.def | |
2114f57b AM |
724 | cpu-a29k.lo: cpu-a29k.c $(INCDIR)/filenames.h |
725 | cpu-alpha.lo: cpu-alpha.c $(INCDIR)/filenames.h | |
726 | cpu-arc.lo: cpu-arc.c $(INCDIR)/filenames.h | |
727 | cpu-arm.lo: cpu-arm.c $(INCDIR)/filenames.h | |
728 | cpu-avr.lo: cpu-avr.c $(INCDIR)/filenames.h | |
06c15ad7 | 729 | cpu-cris.lo: cpu-cris.c $(INCDIR)/filenames.h |
2114f57b AM |
730 | cpu-d10v.lo: cpu-d10v.c $(INCDIR)/filenames.h |
731 | cpu-d30v.lo: cpu-d30v.c $(INCDIR)/filenames.h | |
732 | cpu-fr30.lo: cpu-fr30.c $(INCDIR)/filenames.h | |
733 | cpu-h8300.lo: cpu-h8300.c $(INCDIR)/filenames.h | |
734 | cpu-h8500.lo: cpu-h8500.c $(INCDIR)/filenames.h | |
735 | cpu-hppa.lo: cpu-hppa.c $(INCDIR)/filenames.h | |
736 | cpu-ia64.lo: cpu-ia64.c $(INCDIR)/filenames.h cpu-ia64-opc.c \ | |
737 | $(srcdir)/../opcodes/ia64-opc.h $(INCDIR)/opcode/ia64.h | |
738 | cpu-i370.lo: cpu-i370.c $(INCDIR)/filenames.h | |
739 | cpu-i386.lo: cpu-i386.c $(INCDIR)/filenames.h | |
740 | cpu-i860.lo: cpu-i860.c $(INCDIR)/filenames.h | |
741 | cpu-i960.lo: cpu-i960.c $(INCDIR)/filenames.h | |
742 | cpu-m32r.lo: cpu-m32r.c $(INCDIR)/filenames.h | |
60bcf0fa NC |
743 | cpu-m68hc11.lo: cpu-m68hc11.c $(INCDIR)/filenames.h |
744 | cpu-m68hc12.lo: cpu-m68hc12.c $(INCDIR)/filenames.h | |
bbeb2e03 | 745 | cpu-m68k.lo: cpu-m68k.c $(INCDIR)/filenames.h |
2114f57b AM |
746 | cpu-m88k.lo: cpu-m88k.c $(INCDIR)/filenames.h |
747 | cpu-m10200.lo: cpu-m10200.c $(INCDIR)/filenames.h | |
748 | cpu-m10300.lo: cpu-m10300.c $(INCDIR)/filenames.h | |
749 | cpu-mcore.lo: cpu-mcore.c $(INCDIR)/filenames.h | |
750 | cpu-mips.lo: cpu-mips.c $(INCDIR)/filenames.h | |
751 | cpu-ns32k.lo: cpu-ns32k.c $(INCDIR)/filenames.h ns32k.h | |
752 | cpu-pj.lo: cpu-pj.c $(INCDIR)/filenames.h | |
753 | cpu-powerpc.lo: cpu-powerpc.c $(INCDIR)/filenames.h | |
754 | cpu-rs6000.lo: cpu-rs6000.c $(INCDIR)/filenames.h | |
755 | cpu-sh.lo: cpu-sh.c $(INCDIR)/filenames.h | |
756 | cpu-sparc.lo: cpu-sparc.c $(INCDIR)/filenames.h | |
757 | cpu-tic30.lo: cpu-tic30.c $(INCDIR)/filenames.h | |
758 | cpu-tic54x.lo: cpu-tic54x.c $(INCDIR)/filenames.h | |
759 | cpu-tic80.lo: cpu-tic80.c $(INCDIR)/filenames.h | |
760 | cpu-v850.lo: cpu-v850.c $(INCDIR)/filenames.h | |
761 | cpu-vax.lo: cpu-vax.c $(INCDIR)/filenames.h | |
762 | cpu-we32k.lo: cpu-we32k.c $(INCDIR)/filenames.h | |
763 | cpu-w65.lo: cpu-w65.c $(INCDIR)/filenames.h | |
764 | cpu-z8k.lo: cpu-z8k.c $(INCDIR)/filenames.h | |
765 | aout-adobe.lo: aout-adobe.c $(INCDIR)/filenames.h $(INCDIR)/aout/adobe.h \ | |
252b5132 RH |
766 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h \ |
767 | $(INCDIR)/bfdlink.h | |
2114f57b AM |
768 | aout-arm.lo: aout-arm.c $(INCDIR)/filenames.h libaout.h \ |
769 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aoutx.h \ | |
770 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
771 | aout-target.h | |
06c15ad7 HPN |
772 | aout-cris.lo: aout-cris.c aout32.c aoutx.h $(INCDIR)/filenames.h \ |
773 | $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/aout/aout64.h \ | |
774 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
775 | aout-target.h | |
252b5132 RH |
776 | aout-ns32k.lo: aout-ns32k.c $(INCDIR)/aout/aout64.h \ |
777 | ns32k.h libaout.h $(INCDIR)/bfdlink.h | |
778 | aout-sparcle.lo: aout-sparcle.c $(INCDIR)/bfdlink.h \ | |
2114f57b | 779 | libaout.h aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/aout/sun4.h \ |
252b5132 | 780 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ |
2114f57b AM |
781 | $(INCDIR)/aout/ar.h aout-target.h |
782 | aout-tic30.lo: aout-tic30.c $(INCDIR)/filenames.h libaout.h \ | |
252b5132 | 783 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ |
2114f57b AM |
784 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aoutx.h |
785 | aout0.lo: aout0.c aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/aout/sun4.h \ | |
786 | libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \ | |
787 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
788 | aout-target.h | |
789 | aout32.lo: aout32.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
790 | libaout.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
021e3cc0 | 791 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h |
2114f57b AM |
792 | armnetbsd.lo: armnetbsd.c netbsd.h $(INCDIR)/filenames.h \ |
793 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
794 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
795 | bout.lo: bout.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
796 | genlink.h $(INCDIR)/bout.h $(INCDIR)/aout/stab_gnu.h \ | |
797 | $(INCDIR)/aout/stab.def libaout.h | |
798 | cf-i386lynx.lo: cf-i386lynx.c $(INCDIR)/filenames.h \ | |
799 | coff-i386.c $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h \ | |
800 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
801 | cf-m68klynx.lo: cf-m68klynx.c coff-m68k.c $(INCDIR)/filenames.h \ | |
802 | $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h \ | |
803 | $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
804 | cf-sparclynx.lo: cf-sparclynx.c coff-sparc.c $(INCDIR)/filenames.h \ | |
805 | $(INCDIR)/coff/sparc.h $(INCDIR)/coff/internal.h libcoff.h \ | |
806 | $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
807 | coff-a29k.lo: coff-a29k.c $(INCDIR)/filenames.h $(INCDIR)/coff/a29k.h \ | |
252b5132 RH |
808 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ |
809 | coffcode.h coffswap.h | |
2114f57b AM |
810 | coff-apollo.lo: coff-apollo.c $(INCDIR)/filenames.h \ |
811 | $(INCDIR)/coff/apollo.h $(INCDIR)/coff/internal.h libcoff.h \ | |
812 | $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
813 | coff-arm.lo: coff-arm.c $(INCDIR)/filenames.h $(INCDIR)/coff/arm.h \ | |
252b5132 RH |
814 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ |
815 | coffcode.h coffswap.h | |
2114f57b AM |
816 | coff-aux.lo: coff-aux.c $(INCDIR)/filenames.h $(INCDIR)/coff/aux-coff.h \ |
817 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h coff-m68k.c \ | |
818 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
819 | coff-h8300.lo: coff-h8300.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
820 | genlink.h $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h \ | |
821 | libcoff.h coffcode.h coffswap.h | |
822 | coff-h8500.lo: coff-h8500.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
823 | $(INCDIR)/coff/h8500.h $(INCDIR)/coff/internal.h libcoff.h \ | |
824 | coffcode.h coffswap.h | |
825 | coff-i386.lo: coff-i386.c $(INCDIR)/filenames.h $(INCDIR)/coff/i386.h \ | |
252b5132 RH |
826 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ |
827 | coffcode.h coffswap.h | |
2114f57b | 828 | coff-i860.lo: coff-i860.c $(INCDIR)/filenames.h $(INCDIR)/coff/i860.h \ |
252b5132 RH |
829 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ |
830 | coffcode.h coffswap.h | |
2114f57b AM |
831 | coff-go32.lo: coff-go32.c coff-i386.c $(INCDIR)/filenames.h \ |
832 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h libcoff.h \ | |
833 | $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
834 | coff-i960.lo: coff-i960.c $(INCDIR)/filenames.h $(INCDIR)/coff/i960.h \ | |
835 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ | |
252b5132 | 836 | coffcode.h coffswap.h |
2114f57b AM |
837 | coff-m68k.lo: coff-m68k.c $(INCDIR)/filenames.h $(INCDIR)/coff/m68k.h \ |
838 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ | |
252b5132 | 839 | coffcode.h coffswap.h |
2114f57b | 840 | coff-m88k.lo: coff-m88k.c $(INCDIR)/filenames.h $(INCDIR)/coff/m88k.h \ |
252b5132 RH |
841 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ |
842 | coffcode.h coffswap.h | |
2114f57b AM |
843 | coff-mips.lo: coff-mips.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
844 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ | |
845 | $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h libcoff.h \ | |
846 | libecoff.h coffswap.h ecoffswap.h | |
847 | coff-pmac.lo: coff-pmac.c $(INCDIR)/filenames.h $(INCDIR)/coff/internal.h \ | |
252b5132 | 848 | $(INCDIR)/coff/rs6000.h libcoff.h $(INCDIR)/bfdlink.h \ |
2c38bc20 | 849 | xcoff-target.h coffcode.h coffswap.h |
2114f57b AM |
850 | coff-rs6000.lo: coff-rs6000.c $(INCDIR)/filenames.h \ |
851 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6000.h libcoff.h \ | |
852 | $(INCDIR)/bfdlink.h xcoff-target.h coffcode.h coffswap.h | |
853 | coff-sh.lo: coff-sh.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
854 | $(INCDIR)/coff/sh.h $(INCDIR)/coff/internal.h libcoff.h \ | |
855 | coffcode.h coffswap.h | |
856 | coff-sparc.lo: coff-sparc.c $(INCDIR)/filenames.h $(INCDIR)/coff/sparc.h \ | |
252b5132 RH |
857 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ |
858 | coffcode.h coffswap.h | |
2114f57b AM |
859 | coff-stgo32.lo: coff-stgo32.c coff-i386.c $(INCDIR)/filenames.h \ |
860 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/go32exe.h \ | |
252b5132 RH |
861 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h \ |
862 | go32stub.h | |
2114f57b AM |
863 | coff-svm68k.lo: coff-svm68k.c coff-m68k.c $(INCDIR)/filenames.h \ |
864 | $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h \ | |
865 | $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
866 | coff-tic30.lo: coff-tic30.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
867 | $(INCDIR)/coff/tic30.h $(INCDIR)/coff/internal.h libcoff.h \ | |
252b5132 | 868 | coffcode.h coffswap.h |
2114f57b AM |
869 | coff-tic54x.lo: coff-tic54x.c $(INCDIR)/filenames.h \ |
870 | $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h \ | |
252b5132 | 871 | $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h |
2114f57b AM |
872 | coff-tic80.lo: coff-tic80.c $(INCDIR)/bfdlink.h $(INCDIR)/filenames.h \ |
873 | $(INCDIR)/coff/tic80.h $(INCDIR)/coff/internal.h libcoff.h \ | |
7df5277a | 874 | coffcode.h coffswap.h |
2114f57b AM |
875 | coff-u68k.lo: coff-u68k.c coff-m68k.c $(INCDIR)/filenames.h \ |
876 | $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h \ | |
877 | $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
878 | coff-we32k.lo: coff-we32k.c $(INCDIR)/filenames.h $(INCDIR)/coff/we32k.h \ | |
252b5132 RH |
879 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ |
880 | coffcode.h coffswap.h | |
2114f57b AM |
881 | coff-w65.lo: coff-w65.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
882 | $(INCDIR)/coff/w65.h $(INCDIR)/coff/internal.h libcoff.h \ | |
252b5132 | 883 | coffcode.h coffswap.h |
2114f57b AM |
884 | coff-z8k.lo: coff-z8k.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
885 | $(INCDIR)/coff/z8k.h $(INCDIR)/coff/internal.h libcoff.h \ | |
886 | coffcode.h coffswap.h | |
887 | cofflink.lo: cofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
888 | $(INCDIR)/coff/internal.h libcoff.h | |
889 | dwarf1.lo: dwarf1.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ | |
7df5277a | 890 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
2114f57b AM |
891 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/dwarf.h |
892 | dwarf2.lo: dwarf2.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ | |
893 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
894 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/dwarf2.h | |
895 | ecoff.lo: ecoff.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
896 | $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h $(INCDIR)/aout/stab_gnu.h \ | |
897 | $(INCDIR)/aout/stab.def libaout.h $(INCDIR)/aout/aout64.h \ | |
898 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ | |
899 | $(INCDIR)/coff/ecoff.h libcoff.h libecoff.h | |
900 | ecofflink.lo: ecofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
901 | $(INCDIR)/objalloc.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
902 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ | |
903 | $(INCDIR)/coff/ecoff.h libcoff.h libecoff.h | |
904 | efi-app-ia32.lo: efi-app-ia32.c $(INCDIR)/filenames.h \ | |
905 | coff-i386.c $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h \ | |
906 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
907 | peicode.h libpei.h | |
908 | elf.lo: elf.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
252b5132 | 909 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
2114f57b AM |
910 | $(INCDIR)/elf/external.h |
911 | elf32-arc.lo: elf32-arc.c $(INCDIR)/filenames.h elf-bfd.h \ | |
912 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
913 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h \ | |
252b5132 | 914 | elf32-target.h |
2114f57b AM |
915 | elfarm-oabi.lo: elfarm-oabi.c $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h \ |
916 | $(INCDIR)/filenames.h elf-bfd.h $(INCDIR)/elf/common.h \ | |
252b5132 | 917 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ |
2114f57b AM |
918 | elf32-arm.h elf32-target.h |
919 | elfarm-nabi.lo: elfarm-nabi.c $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h \ | |
920 | $(INCDIR)/filenames.h elf-bfd.h $(INCDIR)/elf/common.h \ | |
252b5132 | 921 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ |
2114f57b AM |
922 | elf32-arm.h elf32-target.h |
923 | elf32-avr.lo: elf32-avr.c $(INCDIR)/filenames.h elf-bfd.h \ | |
924 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
925 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/avr.h $(INCDIR)/elf/reloc-macros.h \ | |
252b5132 | 926 | elf32-target.h |
06c15ad7 HPN |
927 | elf32-cris.lo: elf32-cris.c $(INCDIR)/filenames.h elf-bfd.h \ |
928 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
929 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/cris.h $(INCDIR)/elf/reloc-macros.h \ | |
930 | elf32-target.h | |
2114f57b AM |
931 | elf32-d10v.lo: elf32-d10v.c $(INCDIR)/filenames.h elf-bfd.h \ |
932 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1b452ec6 AM |
933 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/d10v.h $(INCDIR)/elf/reloc-macros.h \ |
934 | elf32-target.h | |
2114f57b AM |
935 | elf32-d30v.lo: elf32-d30v.c $(INCDIR)/filenames.h elf-bfd.h \ |
936 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1b452ec6 AM |
937 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/d30v.h $(INCDIR)/elf/reloc-macros.h \ |
938 | elf32-target.h | |
2114f57b AM |
939 | elf32-fr30.lo: elf32-fr30.c $(INCDIR)/filenames.h elf-bfd.h \ |
940 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
941 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/fr30.h $(INCDIR)/elf/reloc-macros.h \ | |
252b5132 | 942 | elf32-target.h |
2114f57b | 943 | elf32-gen.lo: elf32-gen.c $(INCDIR)/filenames.h elf-bfd.h \ |
41b49281 | 944 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ |
2114f57b AM |
945 | $(INCDIR)/bfdlink.h elf32-target.h |
946 | elf32-hppa.lo: elf32-hppa.c $(INCDIR)/filenames.h elf-bfd.h \ | |
252b5132 | 947 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ |
2114f57b | 948 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/hppa.h $(INCDIR)/elf/reloc-macros.h \ |
edd21aca | 949 | libhppa.h elf32-hppa.h elf-hppa.h elf32-target.h |
2114f57b AM |
950 | elf32-i370.lo: elf32-i370.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
951 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
952 | $(INCDIR)/elf/external.h $(INCDIR)/elf/i370.h elf32-target.h | |
953 | elf32-i386.lo: elf32-i386.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
954 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
955 | $(INCDIR)/elf/external.h $(INCDIR)/elf/i386.h $(INCDIR)/elf/reloc-macros.h \ | |
252b5132 | 956 | elf32-target.h |
2114f57b | 957 | elf32-i860.lo: elf32-i860.c $(INCDIR)/filenames.h elf-bfd.h \ |
252b5132 | 958 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ |
2114f57b AM |
959 | $(INCDIR)/bfdlink.h elf32-target.h |
960 | elf32-i960.lo: elf32-i960.c $(INCDIR)/filenames.h elf-bfd.h \ | |
961 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
962 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/i960.h $(INCDIR)/elf/reloc-macros.h \ | |
252b5132 | 963 | elf32-target.h |
2114f57b AM |
964 | elf32-m32r.lo: elf32-m32r.c $(INCDIR)/filenames.h elf-bfd.h \ |
965 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
966 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/m32r.h $(INCDIR)/elf/reloc-macros.h \ | |
252b5132 | 967 | elf32-target.h |
2114f57b AM |
968 | elf32-m68k.lo: elf32-m68k.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
969 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
970 | $(INCDIR)/elf/external.h $(INCDIR)/elf/m68k.h $(INCDIR)/elf/reloc-macros.h \ | |
252b5132 | 971 | elf32-target.h |
bbeb2e03 L |
972 | elf32-m68hc11.lo: elf32-m68hc11.c $(INCDIR)/filenames.h \ |
973 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
974 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/m68hc11.h \ | |
975 | $(INCDIR)/elf/reloc-macros.h elf32-target.h | |
976 | elf32-m68hc12.lo: elf32-m68hc12.c $(INCDIR)/filenames.h \ | |
977 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
978 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/m68hc11.h \ | |
979 | $(INCDIR)/elf/reloc-macros.h elf32-target.h | |
2114f57b AM |
980 | elf32-m88k.lo: elf32-m88k.c $(INCDIR)/filenames.h elf-bfd.h \ |
981 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
982 | $(INCDIR)/bfdlink.h elf32-target.h | |
983 | elf-m10200.lo: elf-m10200.c $(INCDIR)/filenames.h elf-bfd.h \ | |
984 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
985 | $(INCDIR)/bfdlink.h elf32-target.h | |
986 | elf-m10300.lo: elf-m10300.c $(INCDIR)/filenames.h elf-bfd.h \ | |
252b5132 | 987 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ |
2114f57b | 988 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/mn10300.h $(INCDIR)/elf/reloc-macros.h \ |
252b5132 | 989 | elf32-target.h |
2114f57b AM |
990 | elf32-mcore.lo: elf32-mcore.c $(INCDIR)/filenames.h \ |
991 | $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \ | |
992 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/mcore.h \ | |
993 | $(INCDIR)/elf/reloc-macros.h elf32-target.h | |
994 | elf32-mips.lo: elf32-mips.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
995 | genlink.h elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
252b5132 RH |
996 | $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \ |
997 | $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \ | |
998 | $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h ecoffswap.h \ | |
999 | elf32-target.h | |
2114f57b AM |
1000 | elf32-pj.lo: elf32-pj.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
1001 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1002 | $(INCDIR)/elf/external.h $(INCDIR)/elf/pj.h $(INCDIR)/elf/reloc-macros.h \ | |
252b5132 | 1003 | elf32-target.h |
2114f57b AM |
1004 | elf32-ppc.lo: elf32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
1005 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1006 | $(INCDIR)/elf/external.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h \ | |
1007 | elf32-target.h | |
1008 | elf32-sh.lo: elf32-sh.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1009 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1010 | $(INCDIR)/elf/external.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \ | |
1011 | elf32-target.h | |
1012 | elf32-sparc.lo: elf32-sparc.c $(INCDIR)/filenames.h \ | |
1013 | $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \ | |
1014 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/sparc.h \ | |
1015 | $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/sparc.h \ | |
1016 | elf32-target.h | |
1017 | elf32-v850.lo: elf32-v850.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1018 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1019 | $(INCDIR)/elf/external.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h \ | |
1020 | elf32-target.h | |
1021 | elf32.lo: elf32.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1022 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1023 | $(INCDIR)/elf/external.h elfcore.h elflink.h | |
1024 | elflink.lo: elflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1025 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1026 | $(INCDIR)/elf/external.h | |
1027 | epoc-pe-arm.lo: epoc-pe-arm.c pe-arm.c $(INCDIR)/filenames.h \ | |
1028 | coff-arm.c $(INCDIR)/coff/arm.h $(INCDIR)/coff/internal.h \ | |
1029 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
1030 | peicode.h libpei.h | |
1031 | epoc-pei-arm.lo: epoc-pei-arm.c pei-arm.c $(INCDIR)/filenames.h \ | |
1032 | coff-arm.c $(INCDIR)/coff/arm.h $(INCDIR)/coff/internal.h \ | |
1033 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
1034 | peicode.h libpei.h | |
1035 | hp300bsd.lo: hp300bsd.c $(INCDIR)/filenames.h libaout.h \ | |
1036 | $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1037 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
252b5132 | 1038 | hp300hpux.lo: hp300hpux.c $(INCDIR)/aout/hp300hpux.h \ |
2114f57b AM |
1039 | aoutx.h $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h libaout.h \ |
1040 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
1041 | $(INCDIR)/aout/ar.h aout-target.h | |
1042 | som.lo: som.c $(INCDIR)/filenames.h | |
1043 | i386aout.lo: i386aout.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \ | |
1044 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/stab_gnu.h \ | |
252b5132 | 1045 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h |
2114f57b AM |
1046 | i386bsd.lo: i386bsd.c $(INCDIR)/filenames.h libaout.h \ |
1047 | $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1048 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
252b5132 | 1049 | i386dynix.lo: i386dynix.c $(INCDIR)/aout/dynix3.h aoutx.h \ |
2114f57b AM |
1050 | $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h libaout.h \ |
1051 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
1052 | $(INCDIR)/aout/ar.h aout-target.h | |
1053 | i386freebsd.lo: i386freebsd.c freebsd.h $(INCDIR)/filenames.h \ | |
1054 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1055 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1056 | i386linux.lo: i386linux.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \ | |
252b5132 | 1057 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ |
2114f57b AM |
1058 | libaout.h $(INCDIR)/bfdlink.h aout-target.h |
1059 | i386lynx.lo: i386lynx.c $(INCDIR)/filenames.h libaout.h \ | |
1060 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aout-target.h \ | |
1061 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1062 | i386msdos.lo: i386msdos.c $(INCDIR)/filenames.h libaout.h \ | |
1063 | $(INCDIR)/bfdlink.h | |
1064 | i386netbsd.lo: i386netbsd.c netbsd.h $(INCDIR)/filenames.h \ | |
1065 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1066 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1067 | i386mach3.lo: i386mach3.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \ | |
1068 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
1069 | libaout.h $(INCDIR)/bfdlink.h aout-target.h | |
1070 | i386os9k.lo: i386os9k.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1071 | libaout.h $(INCDIR)/os9k.h | |
1072 | ieee.lo: ieee.c $(INCDIR)/filenames.h $(INCDIR)/ieee.h \ | |
1073 | libieee.h | |
1074 | m68k4knetbsd.lo: m68k4knetbsd.c netbsd.h $(INCDIR)/filenames.h \ | |
1075 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1076 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1077 | m68klinux.lo: m68klinux.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \ | |
1078 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
1079 | libaout.h $(INCDIR)/bfdlink.h aout-target.h | |
1080 | m68klynx.lo: m68klynx.c $(INCDIR)/filenames.h libaout.h \ | |
1081 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aout-target.h \ | |
1082 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1083 | m68knetbsd.lo: m68knetbsd.c netbsd.h $(INCDIR)/filenames.h \ | |
1084 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1085 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1086 | m88kmach3.lo: m88kmach3.c $(INCDIR)/filenames.h libaout.h \ | |
252b5132 RH |
1087 | $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ |
1088 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
2114f57b AM |
1089 | mipsbsd.lo: mipsbsd.c $(INCDIR)/filenames.h libaout.h \ |
1090 | $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1091 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1092 | newsos3.lo: newsos3.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \ | |
1093 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
1094 | libaout.h $(INCDIR)/bfdlink.h aout-target.h | |
1095 | nlm.lo: nlm.c $(INCDIR)/filenames.h libnlm.h $(INCDIR)/nlm/common.h \ | |
1096 | $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h | |
1097 | nlm32-i386.lo: nlm32-i386.c $(INCDIR)/filenames.h $(INCDIR)/nlm/i386-ext.h \ | |
252b5132 RH |
1098 | libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ |
1099 | $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h | |
2114f57b AM |
1100 | nlm32-sparc.lo: nlm32-sparc.c $(INCDIR)/filenames.h \ |
1101 | $(INCDIR)/nlm/sparc32-ext.h libnlm.h $(INCDIR)/nlm/common.h \ | |
1102 | $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \ | |
1103 | nlm-target.h | |
1104 | nlm32-ppc.lo: nlm32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/nlm/ppc-ext.h \ | |
252b5132 RH |
1105 | libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ |
1106 | $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h | |
2114f57b AM |
1107 | nlm32.lo: nlm32.c nlmcode.h $(INCDIR)/filenames.h libnlm.h \ |
1108 | $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h | |
1109 | ns32knetbsd.lo: ns32knetbsd.c netbsd.h $(INCDIR)/filenames.h \ | |
1110 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1111 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1112 | oasys.lo: oasys.c $(INCDIR)/filenames.h $(INCDIR)/oasys.h \ | |
1113 | liboasys.h | |
1114 | pc532-mach.lo: pc532-mach.c $(INCDIR)/filenames.h libaout.h \ | |
1115 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aout-target.h \ | |
1116 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1117 | pe-arm.lo: pe-arm.c $(INCDIR)/filenames.h coff-arm.c \ | |
1118 | $(INCDIR)/coff/arm.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \ | |
1119 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \ | |
1120 | libpei.h | |
1121 | pei-arm.lo: pei-arm.c $(INCDIR)/filenames.h coff-arm.c \ | |
1122 | $(INCDIR)/coff/arm.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \ | |
1123 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \ | |
1124 | libpei.h | |
1125 | pe-i386.lo: pe-i386.c $(INCDIR)/filenames.h coff-i386.c \ | |
1126 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \ | |
1127 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \ | |
1128 | libpei.h | |
1129 | pei-i386.lo: pei-i386.c $(INCDIR)/filenames.h coff-i386.c \ | |
1130 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \ | |
1131 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \ | |
1132 | libpei.h | |
1133 | pe-mcore.lo: pe-mcore.c $(INCDIR)/filenames.h coff-mcore.c \ | |
1134 | $(INCDIR)/coff/mcore.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \ | |
1135 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \ | |
1136 | libpei.h | |
1137 | pei-mcore.lo: pei-mcore.c $(INCDIR)/filenames.h coff-mcore.c \ | |
1138 | $(INCDIR)/coff/mcore.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \ | |
1139 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \ | |
1140 | libpei.h | |
1141 | pe-ppc.lo: pe-ppc.c $(INCDIR)/filenames.h coff-ppc.c \ | |
1142 | $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/internal.h \ | |
41b49281 AM |
1143 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ |
1144 | peicode.h libpei.h | |
2114f57b AM |
1145 | pei-ppc.lo: pei-ppc.c $(INCDIR)/filenames.h coff-ppc.c \ |
1146 | $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/internal.h \ | |
1147 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
1148 | peicode.h libpei.h | |
1149 | pe-sh.lo: pe-sh.c $(INCDIR)/filenames.h coff-sh.c $(INCDIR)/bfdlink.h \ | |
1150 | $(INCDIR)/coff/sh.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \ | |
1151 | libcoff.h coffcode.h peicode.h libpei.h | |
1152 | pei-sh.lo: pei-sh.c $(INCDIR)/filenames.h coff-sh.c \ | |
1153 | $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h $(INCDIR)/coff/internal.h \ | |
1154 | $(INCDIR)/coff/pe.h libcoff.h coffcode.h peicode.h \ | |
1155 | libpei.h | |
1156 | pe-mips.lo: pe-mips.c $(INCDIR)/filenames.h $(INCDIR)/coff/mipspe.h \ | |
41b49281 AM |
1157 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ |
1158 | $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h | |
2114f57b AM |
1159 | pei-mips.lo: pei-mips.c $(INCDIR)/filenames.h pe-mips.c \ |
1160 | $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \ | |
1161 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \ | |
1162 | libpei.h | |
1163 | peigen.lo: peigen.c $(INCDIR)/filenames.h $(INCDIR)/coff/internal.h \ | |
1164 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/pe.h libcoff.h \ | |
1165 | $(INCDIR)/bfdlink.h libpei.h | |
1166 | ppcboot.lo: ppcboot.c $(INCDIR)/filenames.h | |
1167 | reloc16.lo: reloc16.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1168 | genlink.h $(INCDIR)/coff/internal.h libcoff.h | |
1169 | riscix.lo: riscix.c $(INCDIR)/filenames.h libaout.h \ | |
1170 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aout-target.h \ | |
1171 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1172 | sparclinux.lo: sparclinux.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \ | |
252b5132 RH |
1173 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ |
1174 | libaout.h $(INCDIR)/bfdlink.h aout-target.h | |
2114f57b | 1175 | sparclynx.lo: sparclynx.c $(INCDIR)/filenames.h $(INCDIR)/aout/sun4.h \ |
252b5132 RH |
1176 | libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \ |
1177 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
1178 | aout-target.h | |
2114f57b AM |
1179 | sparcnetbsd.lo: sparcnetbsd.c netbsd.h $(INCDIR)/filenames.h \ |
1180 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1181 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1182 | sunos.lo: sunos.c $(INCDIR)/bfdlink.h libaout.h aoutf1.h \ | |
1183 | $(INCDIR)/filenames.h $(INCDIR)/aout/sun4.h $(INCDIR)/aout/aout64.h \ | |
1184 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
1185 | aout-target.h | |
1186 | vaxnetbsd.lo: vaxnetbsd.c netbsd.h $(INCDIR)/filenames.h \ | |
1187 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1188 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1189 | versados.lo: versados.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h | |
1190 | vms.lo: vms.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1191 | vms.h | |
1192 | vms-gsd.lo: vms-gsd.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1193 | vms.h | |
1194 | vms-hdr.lo: vms-hdr.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1195 | vms.h | |
1196 | vms-misc.lo: vms-misc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1197 | vms.h | |
1198 | vms-tir.lo: vms-tir.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1199 | vms.h | |
1200 | xcofflink.lo: xcofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1201 | $(INCDIR)/coff/internal.h libcoff.h | |
1202 | aout64.lo: aout64.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1203 | libaout.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1204 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1205 | coff-alpha.lo: coff-alpha.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
252b5132 RH |
1206 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ |
1207 | $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h $(INCDIR)/aout/ar.h \ | |
2114f57b AM |
1208 | libcoff.h libecoff.h coffswap.h ecoffswap.h |
1209 | coff64-rs6000.lo: coff64-rs6000.c $(INCDIR)/filenames.h \ | |
1210 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6k64.h libcoff.h \ | |
1211 | $(INCDIR)/bfdlink.h xcoff-target.h coffcode.h coffswap.h | |
1212 | demo64.lo: demo64.c aoutf1.h $(INCDIR)/filenames.h \ | |
1213 | $(INCDIR)/aout/sun4.h libaout.h $(INCDIR)/bfdlink.h \ | |
1214 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
1215 | $(INCDIR)/aout/ar.h aout-target.h | |
1216 | efi-app-ia64.lo: efi-app-ia64.c $(INCDIR)/filenames.h \ | |
1217 | coff-ia64.c $(INCDIR)/coff/ia64.h $(INCDIR)/coff/internal.h \ | |
1218 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
1219 | peicode.h libpei.h | |
1220 | elf64-alpha.lo: elf64-alpha.c $(INCDIR)/filenames.h \ | |
1221 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1222 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/alpha.h \ | |
1223 | $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \ | |
1224 | $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \ | |
1225 | $(INCDIR)/coff/alpha.h $(INCDIR)/aout/ar.h libcoff.h \ | |
1226 | libecoff.h ecoffswap.h elf64-target.h | |
1227 | elf64-hppa.lo: elf64-hppa.c $(INCDIR)/filenames.h elf-bfd.h \ | |
1228 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1229 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/hppa.h $(INCDIR)/elf/reloc-macros.h \ | |
1230 | libhppa.h elf64-hppa.h elf-hppa.h elf64-target.h | |
1231 | elf64-ia64.lo: elf64-ia64.c $(INCDIR)/filenames.h elf-bfd.h \ | |
1232 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1233 | $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h \ | |
1234 | $(INCDIR)/elf/reloc-macros.h elf64-target.h | |
1235 | elf64-gen.lo: elf64-gen.c $(INCDIR)/filenames.h elf-bfd.h \ | |
1236 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1237 | $(INCDIR)/bfdlink.h elf64-target.h | |
1238 | elf64-mips.lo: elf64-mips.c $(INCDIR)/filenames.h $(INCDIR)/aout/ar.h \ | |
1239 | $(INCDIR)/bfdlink.h genlink.h elf-bfd.h $(INCDIR)/elf/common.h \ | |
1240 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h \ | |
1241 | $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ | |
1242 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h \ | |
1243 | ecoffswap.h elf64-target.h | |
1244 | elf64-sparc.lo: elf64-sparc.c $(INCDIR)/filenames.h \ | |
1245 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1246 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/sparc.h \ | |
252b5132 RH |
1247 | $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \ |
1248 | elf64-target.h | |
2114f57b AM |
1249 | elf64.lo: elf64.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
1250 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1251 | $(INCDIR)/elf/external.h elfcore.h elflink.h | |
1252 | nlm32-alpha.lo: nlm32-alpha.c $(INCDIR)/filenames.h \ | |
1253 | $(INCDIR)/nlm/alpha-ext.h libnlm.h $(INCDIR)/nlm/common.h \ | |
1254 | $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \ | |
1255 | nlm-target.h | |
1256 | nlm64.lo: nlm64.c nlmcode.h $(INCDIR)/filenames.h libnlm.h \ | |
1257 | $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h | |
1258 | aix386-core.lo: aix386-core.c $(INCDIR)/filenames.h \ | |
1259 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h libcoff.h \ | |
1260 | $(INCDIR)/bfdlink.h | |
1261 | hpux-core.lo: hpux-core.c $(INCDIR)/filenames.h | |
1262 | irix-core.lo: irix-core.c $(INCDIR)/filenames.h | |
1263 | lynx-core.lo: lynx-core.c $(INCDIR)/filenames.h | |
1264 | osf-core.lo: osf-core.c $(INCDIR)/filenames.h | |
1265 | sco5-core.lo: sco5-core.c $(INCDIR)/filenames.h libaout.h \ | |
1266 | $(INCDIR)/bfdlink.h | |
1267 | trad-core.lo: trad-core.c $(INCDIR)/filenames.h libaout.h \ | |
1268 | $(INCDIR)/bfdlink.h | |
1269 | cisco-core.lo: cisco-core.c $(INCDIR)/filenames.h | |
252b5132 | 1270 | # IF YOU PUT ANYTHING HERE IT WILL GO AWAY |