]>
Commit | Line | Data |
---|---|---|
204ae00c | 1 | # Makefile template for Configure for the BFD library. |
86aac8ea ILT |
2 | # Copyright (C) 1990, 91, 92, 93, 94, 95, 1996 |
3 | # Free Software Foundation, Inc. | |
3c8a3c56 JG |
4 | # Written by Cygnus Support. |
5 | # | |
6 | # This file is part of BFD, the Binary File Descriptor library. | |
7 | # | |
8 | # This program is free software; you can redistribute it and/or modify | |
99a42820 | 9 | # it under the terms of the GNU General Public License as published by |
3c8a3c56 JG |
10 | # the Free Software Foundation; either version 2 of the License, or |
11 | # (at your option) any later version. | |
12 | # | |
13 | # This program is distributed in the hope that it will be useful, | |
99a42820 RP |
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | # GNU General Public License for more details. | |
3c8a3c56 | 17 | # |
99a42820 | 18 | # You should have received a copy of the GNU General Public License |
3c8a3c56 | 19 | # along with this program; if not, write to the Free Software |
943fbd5b | 20 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
99a42820 | 21 | |
8c693660 KR |
22 | VPATH = @srcdir@ |
23 | srcdir = @srcdir@ | |
fde8212e | 24 | |
8c693660 | 25 | prefix = @prefix@ |
fde8212e | 26 | |
48fd00b6 | 27 | program_transform_name = @program_transform_name@ |
8c693660 | 28 | exec_prefix = @exec_prefix@ |
50bd50d4 MH |
29 | bindir = @bindir@ |
30 | libdir = @libdir@ | |
5868184b | 31 | |
50bd50d4 MH |
32 | datadir = @datadir@ |
33 | mandir = @mandir@ | |
fde8212e RP |
34 | man1dir = $(mandir)/man1 |
35 | man2dir = $(mandir)/man2 | |
36 | man3dir = $(mandir)/man3 | |
37 | man4dir = $(mandir)/man4 | |
38 | man5dir = $(mandir)/man5 | |
39 | man6dir = $(mandir)/man6 | |
40 | man7dir = $(mandir)/man7 | |
41 | man8dir = $(mandir)/man8 | |
42 | man9dir = $(mandir)/man9 | |
50bd50d4 MH |
43 | infodir = @infodir@ |
44 | includedir = @includedir@ | |
5868184b | 45 | oldincludedir = |
fbee3571 | 46 | docdir = doc |
fde8212e RP |
47 | |
48 | SHELL = /bin/sh | |
49 | ||
b7577823 ILT |
50 | INSTALL = @INSTALL@ |
51 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ | |
52 | INSTALL_DATA = @INSTALL_DATA@ | |
fde8212e | 53 | |
b7577823 | 54 | AR = @AR@ |
287c221d | 55 | AR_FLAGS = rc |
b7577823 | 56 | CC = @CC@ |
c877bdf1 | 57 | CFLAGS = @CFLAGS@ |
fde8212e | 58 | MAKEINFO = makeinfo |
8c693660 | 59 | RANLIB = @RANLIB@ |
fde8212e | 60 | |
44f795f7 ILT |
61 | ALLLIBS = @ALLLIBS@ |
62 | ||
63 | PICFLAG = @PICFLAG@ | |
64 | SHLIB = @SHLIB@ | |
65 | SHLIB_CC = @SHLIB_CC@ | |
66 | SHLIB_CFLAGS = @SHLIB_CFLAGS@ | |
67 | COMMON_SHLIB = @COMMON_SHLIB@ | |
68 | SHLINK = @SHLINK@ | |
69 | ||
52c6bc4d ILT |
70 | SONAME = lib`echo $(SHLIB) | sed -e 's/^lib//' | sed '$(program_transform_name)'` |
71 | ||
b7577823 | 72 | CC_FOR_BUILD = @CC_FOR_BUILD@ |
51300bdb | 73 | |
d6a554ae | 74 | INCDIR = $(srcdir)/../include |
bb552c64 | 75 | CSEARCH = -I. -I$(srcdir) -I$(INCDIR) |
a5c6b4b3 | 76 | DEP = mkdep |
12e7087f | 77 | |
f259290f | 78 | SUBDIRS = doc |
12e7087f | 79 | |
5176a6bc | 80 | TARGETLIB = libbfd.a |
99a42820 | 81 | |
a5220fb9 | 82 | # bfd.h goes here, for now |
12f367a1 | 83 | BFD_H = bfd.h |
99a42820 | 84 | |
15db2044 KR |
85 | # Some of these files should be in BFD*_BACKENDS below, but some programs |
86 | # won't link without them. So, in order for some of the minimal-bfd | |
87 | # hacks to work, they're also included here for now. | |
caede515 | 88 | # gdb: elf.o |
15db2044 | 89 | # objdump: elf.o |
180acef5 DM |
90 | # |
91 | # Also, Jim Kingdon notes: | |
92 | # Writing S-records should be included in all (or at least most) | |
93 | # *-*-coff, *-*-aout, etc., configurations, because people will want to | |
94 | # be able to use objcopy to create S-records. (S-records are not useful | |
95 | # for the debugger, so if you are downloading things as S-records you | |
96 | # need two copies of the executable, one to download and one for the | |
97 | # debugger). | |
01087713 | 98 | BFD_LIBS = \ |
d9e771e3 | 99 | archive.o archures.o bfd.o cache.o coffgen.o corefile.o \ |
01087713 | 100 | format.o init.o libbfd.o opncls.o reloc.o \ |
130308bf | 101 | section.o syms.o targets.o hash.o linker.o \ |
d1bf45aa | 102 | elf.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o |
767f22d5 FF |
103 | |
104 | BFD_LIBS_CFILES = \ | |
105 | archive.c archures.c bfd.c cache.c coffgen.c corefile.c \ | |
106 | format.c init.c libbfd.c opncls.c reloc.c \ | |
107 | section.c syms.c targets.c hash.c linker.c \ | |
d1bf45aa | 108 | elf.c srec.c binary.c tekhex.c ihex.c stabs.c stab-syms.c |
63ffe5ef | 109 | |
01087713 DM |
110 | # This list is alphabetized to make it easier to keep in sync |
111 | # with the decls and initializer in archures.c. | |
112 | ALL_MACHINES = \ | |
113 | cpu-a29k.o \ | |
114 | cpu-alpha.o \ | |
661df78b KR |
115 | $(start-sanitize-arc) \ |
116 | cpu-arc.o \ | |
117 | $(end-sanitize-arc) \ | |
358710a7 | 118 | cpu-arm.o \ |
50bd50d4 MH |
119 | $(start-sanitize-d10v) \ |
120 | cpu-d10v.o \ | |
121 | $(end-sanitize-d10v) \ | |
01087713 DM |
122 | cpu-h8300.o \ |
123 | cpu-h8500.o \ | |
124 | cpu-hppa.o \ | |
125 | cpu-i386.o \ | |
cf587de8 | 126 | cpu-i860.o \ |
01087713 | 127 | cpu-i960.o \ |
f0c12b73 DE |
128 | $(start-sanitize-m32r) \ |
129 | cpu-m32r.o \ | |
130 | $(end-sanitize-m32r) \ | |
01087713 DM |
131 | cpu-m68k.o \ |
132 | cpu-m88k.o \ | |
133 | cpu-mips.o \ | |
ae1b99e4 JL |
134 | cpu-mn10200.o \ |
135 | cpu-mn10300.o \ | |
caede515 | 136 | cpu-ns32k.o \ |
99ec1f66 | 137 | cpu-powerpc.o \ |
01087713 DM |
138 | cpu-rs6000.o \ |
139 | cpu-sh.o \ | |
140 | cpu-sparc.o \ | |
f0c12b73 DE |
141 | $(start-sanitize-v850) \ |
142 | cpu-v850.o \ | |
143 | $(end-sanitize-v850) \ | |
01087713 DM |
144 | cpu-vax.o \ |
145 | cpu-we32k.o \ | |
ac400c0e | 146 | cpu-w65.o \ |
01087713 DM |
147 | cpu-z8k.o |
148 | ||
767f22d5 FF |
149 | ALL_MACHINES_CFILES = \ |
150 | cpu-a29k.c \ | |
151 | cpu-alpha.c \ | |
152 | cpu-arm.c \ | |
153 | cpu-h8300.c \ | |
154 | cpu-h8500.c \ | |
155 | cpu-hppa.c \ | |
156 | cpu-i386.c \ | |
157 | cpu-i860.c \ | |
158 | cpu-i960.c \ | |
159 | cpu-m68k.c \ | |
160 | cpu-m88k.c \ | |
161 | cpu-mips.c \ | |
c00ae065 JL |
162 | cpu-mn10200.c \ |
163 | cpu-mn10300.c \ | |
767f22d5 FF |
164 | cpu-ns32k.c \ |
165 | cpu-powerpc.c \ | |
166 | cpu-rs6000.c \ | |
167 | cpu-sh.c \ | |
168 | cpu-sparc.c \ | |
169 | cpu-vax.c \ | |
170 | cpu-we32k.c \ | |
171 | cpu-w65.c \ | |
172 | cpu-z8k.c | |
173 | ||
01087713 | 174 | # The .o files needed by all of the 32 bit vectors that are configured into |
caede515 | 175 | # target_vector in targets.c if configured with --enable-targets=all. |
bb552c64 | 176 | BFD32_BACKENDS = \ |
01087713 | 177 | aout-adobe.o \ |
dee99794 | 178 | aout-arm.o \ |
caede515 | 179 | aout-ns32k.o \ |
dee99794 | 180 | aout-sparcle.o \ |
666f5925 | 181 | aout0.o \ |
01087713 DM |
182 | aout32.o \ |
183 | bout.o \ | |
d5d53b0a JW |
184 | cf-i386lynx.o \ |
185 | cf-m68klynx.o \ | |
186 | cf-sparclynx.o \ | |
01087713 | 187 | coff-a29k.o \ |
653dd82a | 188 | coff-apollo.o \ |
20d1e233 | 189 | coff-arm.o \ |
d19df9b5 | 190 | coff-aux.o \ |
01087713 DM |
191 | coff-h8300.o \ |
192 | coff-h8500.o \ | |
193 | coff-i386.o \ | |
c06e55d9 | 194 | coff-go32.o \ |
cf587de8 | 195 | coff-i860.o \ |
01087713 DM |
196 | coff-i960.o \ |
197 | coff-m68k.o \ | |
198 | coff-m88k.o \ | |
199 | coff-mips.o \ | |
356cd465 | 200 | coff-pmac.o \ |
01087713 DM |
201 | coff-rs6000.o \ |
202 | coff-sh.o \ | |
6cac89c5 | 203 | coff-sparc.o \ |
01087713 DM |
204 | coff-u68k.o \ |
205 | coff-we32k.o \ | |
ac400c0e | 206 | coff-w65.o \ |
01087713 | 207 | coff-z8k.o \ |
3cd942de | 208 | cofflink.o \ |
caede515 SS |
209 | ecoff.o \ |
210 | ecofflink.o \ | |
661df78b KR |
211 | $(start-sanitize-arc) \ |
212 | elf32-arc.o \ | |
213 | $(end-sanitize-arc) \ | |
50bd50d4 MH |
214 | $(start-sanitize-d10v) \ |
215 | elf32-d10v.o \ | |
216 | $(end-sanitize-d10v) \ | |
01087713 DM |
217 | elf32-gen.o \ |
218 | elf32-hppa.o \ | |
219 | elf32-i386.o \ | |
220 | elf32-i860.o \ | |
f0c12b73 DE |
221 | $(start-sanitize-m32r) \ |
222 | elf32-m32r.o \ | |
223 | $(end-sanitize-m32r) \ | |
01087713 DM |
224 | elf32-m68k.o \ |
225 | elf32-m88k.o \ | |
226 | elf32-mips.o \ | |
ae1b99e4 JL |
227 | elf32-mn10200.o \ |
228 | elf32-mn10300.o \ | |
5a66538b | 229 | elf32-ppc.o \ |
f0c12b73 | 230 | elf32-sh.o \ |
01087713 | 231 | elf32-sparc.o \ |
dee99794 ILT |
232 | $(start-sanitize-v850) \ |
233 | elf32-v850.o \ | |
234 | $(end-sanitize-v850) \ | |
01087713 | 235 | elf32.o \ |
4e98461f | 236 | elflink.o \ |
dee99794 | 237 | hp300bsd.o \ |
01087713 | 238 | hp300hpux.o \ |
d5a30a08 | 239 | som.o \ |
01087713 DM |
240 | i386aout.o \ |
241 | i386bsd.o \ | |
dee99794 | 242 | i386dynix.o \ |
767f22d5 | 243 | i386freebsd.o \ |
01087713 DM |
244 | i386linux.o \ |
245 | i386lynx.o \ | |
89665c85 | 246 | i386msdos.o \ |
a3f7a777 | 247 | i386netbsd.o \ |
01087713 | 248 | i386mach3.o \ |
2f88343d | 249 | i386os9k.o \ |
01087713 | 250 | ieee.o \ |
dee99794 | 251 | m68k4knetbsd.o \ |
c877bdf1 | 252 | m68klinux.o \ |
d5a30a08 | 253 | m68klynx.o \ |
661df78b | 254 | m68knetbsd.o \ |
caede515 | 255 | m88kmach3.o \ |
01087713 DM |
256 | mipsbsd.o \ |
257 | newsos3.o \ | |
c3e964b9 | 258 | nlm.o \ |
01087713 | 259 | nlm32-i386.o \ |
cecbf7ed | 260 | nlm32-sparc.o \ |
5a66538b | 261 | nlm32-ppc.o \ |
01087713 | 262 | nlm32.o \ |
a3f7a777 | 263 | ns32knetbsd.o \ |
01087713 | 264 | oasys.o \ |
caede515 | 265 | pc532-mach.o \ |
89665c85 SC |
266 | pe-arm.o \ |
267 | pei-arm.o \ | |
268 | pe-i386.o \ | |
269 | pei-i386.o \ | |
e0c10737 KK |
270 | pe-ppc.o \ |
271 | pei-ppc.o \ | |
50bd50d4 | 272 | ppcboot.o \ |
01087713 | 273 | reloc16.o \ |
dee99794 | 274 | riscix.o \ |
d5d53b0a | 275 | sparclynx.o \ |
c768bd3f | 276 | sparcnetbsd.o \ |
d40d2d30 | 277 | sunos.o \ |
8809320b | 278 | tekhex.o \ |
356cd465 ILT |
279 | versados.o \ |
280 | xcofflink.o | |
01087713 | 281 | |
767f22d5 | 282 | BFD32_BACKENDS_CFILES = \ |
8d0d6655 | 283 | aout-adobe.c \ |
dee99794 | 284 | aout-arm.c \ |
8d0d6655 | 285 | aout-ns32k.c \ |
dee99794 | 286 | aout-sparcle.c \ |
8d0d6655 KR |
287 | aout0.c \ |
288 | aout32.c \ | |
289 | bout.c \ | |
290 | cf-i386lynx.c \ | |
291 | cf-m68klynx.c \ | |
292 | cf-sparclynx.c \ | |
293 | coff-a29k.c \ | |
294 | coff-apollo.c \ | |
295 | coff-arm.c \ | |
d19df9b5 | 296 | coff-aux.c \ |
8d0d6655 KR |
297 | coff-h8300.c \ |
298 | coff-h8500.c \ | |
299 | coff-i386.c \ | |
cf587de8 | 300 | coff-i860.c \ |
8d0d6655 KR |
301 | coff-go32.c \ |
302 | coff-i960.c \ | |
303 | coff-m68k.c \ | |
304 | coff-m88k.c \ | |
305 | coff-mips.c \ | |
306 | coff-pmac.c \ | |
307 | coff-rs6000.c \ | |
308 | coff-sh.c \ | |
309 | coff-sparc.c \ | |
310 | coff-u68k.c \ | |
311 | coff-we32k.c \ | |
312 | coff-w65.c \ | |
313 | coff-z8k.c \ | |
314 | cofflink.c \ | |
315 | ecoff.c \ | |
316 | ecofflink.c \ | |
317 | elf32-gen.c \ | |
318 | elf32-hppa.c \ | |
319 | elf32-i386.c \ | |
320 | elf32-i860.c \ | |
321 | elf32-m68k.c \ | |
322 | elf32-m88k.c \ | |
323 | elf32-mips.c \ | |
c00ae065 JL |
324 | elf32-mn10200.c \ |
325 | elf32-mn10300.c \ | |
8d0d6655 | 326 | elf32-ppc.c \ |
f0c12b73 | 327 | elf32-sh.c \ |
8d0d6655 KR |
328 | elf32-sparc.c \ |
329 | elf32.c \ | |
330 | elflink.c \ | |
dee99794 | 331 | hp300bsd.c \ |
8d0d6655 KR |
332 | hp300hpux.c \ |
333 | som.c \ | |
334 | i386aout.c \ | |
335 | i386bsd.c \ | |
dee99794 | 336 | i386dynix.c \ |
767f22d5 | 337 | i386freebsd.c \ |
8d0d6655 KR |
338 | i386linux.c \ |
339 | i386lynx.c \ | |
340 | i386msdos.c \ | |
341 | i386netbsd.c \ | |
342 | i386mach3.c \ | |
343 | i386os9k.c \ | |
344 | ieee.c \ | |
dee99794 | 345 | m68k4knetbsd.c \ |
c877bdf1 | 346 | m68klinux.c \ |
8d0d6655 KR |
347 | m68klynx.c \ |
348 | m68knetbsd.c \ | |
349 | m88kmach3.c \ | |
350 | mipsbsd.c \ | |
351 | newsos3.c \ | |
352 | nlm.c \ | |
353 | nlm32-i386.c \ | |
354 | nlm32-sparc.c \ | |
355 | nlm32-ppc.c \ | |
356 | nlm32.c \ | |
357 | ns32knetbsd.c \ | |
358 | oasys.c \ | |
359 | pc532-mach.c \ | |
360 | pe-arm.c \ | |
361 | pei-arm.c \ | |
362 | pe-i386.c \ | |
363 | pei-i386.c \ | |
364 | pe-ppc.c \ | |
365 | pei-ppc.c \ | |
50bd50d4 | 366 | ppcboot.c \ |
8d0d6655 | 367 | reloc16.c \ |
dee99794 | 368 | riscix.c \ |
8d0d6655 KR |
369 | sparclynx.c \ |
370 | sparcnetbsd.c \ | |
8d0d6655 KR |
371 | sunos.c \ |
372 | tekhex.c \ | |
373 | versados.c \ | |
767f22d5 FF |
374 | xcofflink.c |
375 | ||
376 | # The .o files needed by all of the 64 bit vectors that are configured into | |
377 | # target_vector in targets.c if configured with --enable-targets=all | |
378 | # and --enable-64-bit-bfd. | |
379 | BFD64_BACKENDS = \ | |
380 | aout64.o \ | |
381 | coff-alpha.o \ | |
382 | demo64.o \ | |
50bd50d4 | 383 | elf64-alpha.o \ |
767f22d5 | 384 | elf64-gen.o \ |
d1bf45aa | 385 | elf64-mips.o \ |
767f22d5 FF |
386 | elf64-sparc.o \ |
387 | elf64.o \ | |
50bd50d4 MH |
388 | evax-alpha.o \ |
389 | evax-egsd.o \ | |
390 | evax-etir.o \ | |
391 | evax-emh.o \ | |
392 | evax-misc.o \ | |
767f22d5 FF |
393 | nlm32-alpha.o \ |
394 | nlm64.o | |
395 | ||
396 | BFD64_BACKENDS_CFILES = \ | |
8d0d6655 KR |
397 | aout64.c \ |
398 | coff-alpha.c \ | |
399 | demo64.c \ | |
50bd50d4 | 400 | elf64-alpha.c \ |
8d0d6655 | 401 | elf64-gen.c \ |
d1bf45aa | 402 | elf64-mips.c \ |
8d0d6655 KR |
403 | elf64-sparc.c \ |
404 | elf64.c \ | |
50bd50d4 MH |
405 | evax-alpha.c \ |
406 | evax-egsd.c \ | |
407 | evax-etir.c \ | |
408 | evax-emh.c \ | |
409 | evax-misc.c \ | |
8d0d6655 | 410 | nlm32-alpha.c \ |
767f22d5 FF |
411 | nlm64.c |
412 | ||
413 | OPTIONAL_BACKENDS = \ | |
414 | aix386-core.o \ | |
415 | hpux-core.o \ | |
416 | irix-core.o \ | |
417 | lynx-core.o \ | |
418 | osf-core.o \ | |
419 | trad-core.o \ | |
420 | cisco-core.o | |
421 | ||
422 | OPTIONAL_BACKENDS_CFILES = \ | |
423 | aix386-core.c \ | |
424 | hpux-core.c \ | |
425 | irix-core.c \ | |
426 | lynx-core.c \ | |
427 | osf-core.c \ | |
428 | trad-core.c \ | |
429 | cisco-core.c | |
430 | ||
431 | # These are defined by configure.in: | |
432 | WORDSIZE = @wordsize@ | |
433 | ALL_BACKENDS = @all_backends@ | |
434 | BFD_BACKENDS = @bfd_backends@ | |
435 | BFD_MACHINES = @bfd_machines@ | |
436 | TDEFAULTS = @tdefaults@ | |
437 | ||
438 | all: | |
439 | ||
440 | FLAGS_TO_PASS = \ | |
441 | "prefix=$(prefix)" \ | |
442 | "exec_prefix=$(exec_prefix)" \ | |
443 | "against=$(against)" \ | |
444 | "AR=$(AR)" \ | |
445 | "AR_FLAGS=$(AR_FLAGS)" \ | |
446 | "CC=$(CC)" \ | |
447 | "CC_FOR_BUILD=$(CC_FOR_BUILD)" \ | |
448 | "CFLAGS=$(CFLAGS)" \ | |
449 | "RANLIB=$(RANLIB)" \ | |
450 | "MAKEINFO=$(MAKEINFO)" \ | |
451 | "INSTALL=$(INSTALL)" \ | |
452 | "INSTALL_DATA=$(INSTALL_DATA)" \ | |
453 | "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" | |
454 | ||
455 | ALL_CFLAGS=@HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) $(CFLAGS) | |
456 | .c.o: | |
44f795f7 ILT |
457 | if [ -n "$(PICFLAG)" ]; then \ |
458 | $(CC) -c $(PICFLAG) $(ALL_CFLAGS) $< -o pic/$@; \ | |
459 | else true; fi | |
767f22d5 FF |
460 | $(CC) -c $(ALL_CFLAGS) $< |
461 | ||
462 | bfd_libs_here = | |
463 | all_machines_here = | |
464 | bfd32_backends_here = | |
465 | core_files_here = | |
466 | configs_not_included_in_all_targets_option_here = | |
467 | ||
468 | # C source files that correspond to .o's. | |
469 | CFILES = \ | |
470 | $(BFD_LIBS_CFILES) \ | |
471 | $(ALL_MACHINES_CFILES) \ | |
472 | $(BFD32_BACKENDS_CFILES) \ | |
473 | $(BFD64_BACKENDS_CFILES) \ | |
dee99794 | 474 | $(OPTIONAL_BACKENDS_CFILES) |
63ffe5ef | 475 | |
dee99794 ILT |
476 | HFILES = \ |
477 | aout-target.h aoutf1.h aoutx.h coffcode.h coffswap.h \ | |
478 | ecoffswap.h elf32-hppa.h elf32-target.h elf64-target.h \ | |
479 | elfcode.h evax.h genlink.h hppa_stubs.h libaout.h libbfd.h \ | |
480 | libcoff.h libecoff.h elf-bfd.h libhppa.h libieee.h libnlm.h \ | |
481 | liboasys.h netbsd.h nlm-target.h nlmcode.h ns32k.h som.h \ | |
482 | targmatch.h | |
c6b399ce | 483 | |
44f795f7 | 484 | all: Makefile $(ALLLIBS) @PICLIST@ |
98c0c56d | 485 | @$(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
5176a6bc | 486 | |
30662ca6 | 487 | .NOEXPORT: |
204ae00c | 488 | MAKEOVERRIDES= |
30662ca6 | 489 | |
d5d53b0a | 490 | .PHONY: check installcheck |
5868184b | 491 | check: |
26b572e4 | 492 | @echo No testsuites exist for the BFD library. Nothing to check. |
d5d53b0a | 493 | |
76019c92 | 494 | installcheck: |
26b572e4 | 495 | @echo No testsuites exist for the BFD library. Nothing to check. |
5868184b | 496 | |
74991624 | 497 | info dvi : force |
9faacb92 | 498 | @$(MAKE) subdir_do DO=$@ "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
2090ba83 | 499 | |
5868184b | 500 | clean-info: |
98c0c56d | 501 | @$(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
f0abedbe | 502 | |
2090ba83 | 503 | install-info: force |
98c0c56d | 504 | @$(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
2090ba83 | 505 | |
a2bd0529 | 506 | diststuff: info |
cecbf7ed | 507 | |
dcdfa32c DM |
508 | # Various kinds of .o files to put in libbfd.a: |
509 | # BFD_LIBS Generic routines, always needed. | |
5f9a2245 DM |
510 | # BFD_BACKENDS Routines the configured targets need. |
511 | # BFD_MACHINES Architecture-specific routines the configured targets need. | |
a52a3ce8 | 512 | # COREFILE Core file routines for a native configuration |
a21227ef | 513 | OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) @COREFILE@ |
5176a6bc | 514 | |
44f795f7 ILT |
515 | stamp-ofiles: Makefile |
516 | rm -f tofiles | |
2fdca021 | 517 | f=""; \ |
c812942f | 518 | for i in $(OFILES) ; do \ |
2fdca021 | 519 | case " $$f " in \ |
dae31cf5 | 520 | *" $$i "*) ;; \ |
2fdca021 KR |
521 | *) f="$$f $$i" ;; \ |
522 | esac ; \ | |
523 | done ; \ | |
44f795f7 ILT |
524 | echo $$f > tofiles |
525 | $(srcdir)/../move-if-change tofiles ofiles | |
526 | touch stamp-ofiles | |
527 | ||
528 | ofiles: stamp-ofiles ; @true | |
c812942f KR |
529 | |
530 | $(TARGETLIB): $(OFILES) ofiles | |
531 | rm -f $(TARGETLIB) | |
532 | @echo ofiles = `cat ofiles` | |
533 | $(AR) $(AR_FLAGS) $(TARGETLIB) `cat ofiles` | |
534 | $(RANLIB) $(TARGETLIB) | |
5176a6bc | 535 | |
44f795f7 ILT |
536 | stamp-piclist: ofiles |
537 | rm -f tpiclist | |
538 | if [ -n "$(PICFLAG)" ]; then \ | |
539 | sed -e 's,\([^ ][^ ]*\),pic/\1,g' ofiles > tpiclist; \ | |
540 | else \ | |
541 | cp ofiles tpiclist; \ | |
542 | fi | |
543 | $(srcdir)/../move-if-change tpiclist piclist | |
544 | touch stamp-piclist | |
545 | ||
546 | piclist: stamp-piclist ; @true | |
547 | ||
548 | $(SHLIB): stamp-picdir $(OFILES) piclist | |
549 | rm -f $(SHLIB) | |
550 | $(SHLIB_CC) $(SHLIB_CFLAGS) -o $(SHLIB) `cat piclist` | |
551 | ||
52c6bc4d ILT |
552 | # We make a link from libbfd.so to libbfd.so.VERSION for linking, and |
553 | # also a link from libTARGET-bfd.so.VERSION for running. | |
44f795f7 | 554 | $(SHLINK): $(SHLIB) |
52c6bc4d ILT |
555 | ts=lib`echo $(SHLIB) | sed -e 's/^lib//' | sed -e '$(program_transform_name)'`; \ |
556 | if [ "$$ts" != "$(SHLIB)" ]; then \ | |
557 | rm -f $$ts; \ | |
558 | ln -sf $(SHLIB) $$ts; \ | |
559 | else true; fi | |
44f795f7 ILT |
560 | rm -f $(SHLINK) |
561 | ln -sf $(SHLIB) $(SHLINK) | |
562 | ||
52c6bc4d ILT |
563 | # This target creates libTARGET-bfd.so.VERSION as a symlink to |
564 | # libbfd.so.VERSION. It is used on SunOS, which does not have SONAME. | |
565 | stamp-tshlink: $(SHLIB) | |
566 | tf=lib`echo $(SHLIB) | sed -e 's/^lib//' | sed '$(program_transform_name)'`; \ | |
567 | if [ "$$tf" != "$(SHLIB)" ]; then \ | |
568 | rm -f $$tf; \ | |
569 | ln -sf $(SHLIB) $$tf; \ | |
570 | else true; fi | |
571 | touch stamp-tshlink | |
572 | ||
dee99794 ILT |
573 | # This file holds an array associating configuration triplets and |
574 | # vector names. It is built from config.bfd. It is not compiled by | |
575 | # itself, but is included by targets.c. | |
576 | targmatch.h: config.bfd targmatch.sed | |
577 | rm -f targmatch.h | |
578 | sed -f $(srcdir)/targmatch.sed < $(srcdir)/config.bfd > targmatch.new | |
579 | mv -f targmatch.new targmatch.h | |
580 | ||
98c0c56d BK |
581 | # When compiling archures.c and targets.c, supply the default target |
582 | # info from configure. | |
583 | ||
51300bdb | 584 | targets.o: targets.c Makefile |
44f795f7 ILT |
585 | if [ -n "$(PICFLAG)" ]; then \ |
586 | $(CC) -c $(PICFLAG) $(TDEFAULTS) $(ALL_CFLAGS) $(srcdir)/targets.c -o pic/targets.o; \ | |
587 | else true; fi | |
588 | $(CC) -c $(TDEFAULTS) $(ALL_CFLAGS) $(srcdir)/targets.c | |
4a29cb1e | 589 | |
51300bdb | 590 | archures.o: archures.c Makefile |
44f795f7 ILT |
591 | if [ -n "$(PICFLAG)" ]; then \ |
592 | $(CC) -c $(PICFLAG) $(TDEFAULTS) $(ALL_CFLAGS) $(srcdir)/archures.c -o pic/archures.o; \ | |
593 | else true; fi | |
594 | $(CC) -c $(TDEFAULTS) $(ALL_CFLAGS) $(srcdir)/archures.c | |
98c0c56d | 595 | |
b968e4f4 KR |
596 | elf32-target.h : elfxx-target.h |
597 | rm -f elf32-target.h | |
598 | sed -e s/NN/32/g < $(srcdir)/elfxx-target.h > elf32-target.new | |
599 | mv -f elf32-target.new elf32-target.h | |
600 | ||
601 | elf64-target.h : elfxx-target.h | |
602 | rm -f elf64-target.h | |
603 | sed -e s/NN/64/g < $(srcdir)/elfxx-target.h > elf64-target.new | |
604 | mv -f elf64-target.new elf64-target.h | |
605 | ||
f259290f | 606 | subdir_do: force |
6e491a87 | 607 | @for i in $(DODIRS); do \ |
5868184b FF |
608 | if [ -d ./$$i ] ; then \ |
609 | if (cd ./$$i; \ | |
98c0c56d | 610 | $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \ |
f259290f RP |
611 | else exit 1 ; fi ; \ |
612 | else true ; fi ; \ | |
613 | done | |
614 | ||
99a42820 RP |
615 | tags etags: TAGS |
616 | ||
5176a6bc | 617 | TAGS: force |
453063fe | 618 | etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c |
99a42820 | 619 | |
ef2810d0 | 620 | do_mostlyclean: |
4c7f3fde | 621 | rm -f *.o *~ core *.E *.p *.ip aout-params.h gen-aout pic/*.o |
fbee3571 | 622 | do_clean: do_mostlyclean |
f4e14cb9 | 623 | rm -f libbfd.a TAGS bfd.h stmp-bfd.h bfd-tmp.h ofiles stamp-ofiles \ |
44f795f7 | 624 | elf32-target.h elf64-target.h $(SHLIB) $(SHLINK) \ |
dee99794 | 625 | piclist stamp-piclist targmatch.h |
ef2810d0 | 626 | do_distclean: do_clean |
4c7f3fde JM |
627 | rm -f Makefile config.status config.cache config.h config.log \ |
628 | stamp-h bfd-in3.h | |
44f795f7 | 629 | rm -rf pic stamp-picdir |
9521bac3 | 630 | do_maintainer_clean: do_distclean |
66761e59 | 631 | rm -f $(srcdir)/bfd-in2.h $(srcdir)/libbfd.h $(srcdir)/libcoff.h |
ef2810d0 PB |
632 | |
633 | mostlyclean: do_mostlyclean | |
634 | $(MAKE) subdir_do DO=mostlyclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) | |
fbee3571 | 635 | clean: do_clean |
ef2810d0 | 636 | $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
0e238aa7 | 637 | distclean: |
ef2810d0 | 638 | $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
180acef5 | 639 | $(MAKE) do_distclean |
9521bac3 | 640 | clobber maintainer-clean realclean: |
66761e59 ILT |
641 | @echo "This command is intended for maintainers to use;" |
642 | @echo "it deletes files that may require special tools to rebuild." | |
9521bac3 ILT |
643 | $(MAKE) subdir_do DO=maintainer-clean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) |
644 | $(MAKE) do_maintainer_clean | |
99a42820 | 645 | |
d684720f | 646 | BFD_H_DEPS= $(INCDIR)/ansidecl.h $(INCDIR)/obstack.h |
b7577823 ILT |
647 | LOCAL_H_DEPS= libbfd.h sysdep.h config.h |
648 | $(BFD_LIBS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS) | |
649 | $(BFD_MACHINES): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS) | |
650 | $(BFD_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS) | |
651 | $(OPTIONAL_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS) | |
99a42820 | 652 | |
cbdc7909 JG |
653 | # Get around a Sun Make bug in SunOS 4.1.1 with VPATH |
654 | cpu-i386.o:cpu-i386.c | |
fbee3571 | 655 | cpu-z8k.o: cpu-z8k.c |
204ae00c | 656 | cpu-h8500.o: cpu-h8500.c |
fbee3571 | 657 | cpu-we32k.o: cpu-we32k.c |
cbdc7909 | 658 | |
99a42820 RP |
659 | saber: |
660 | #suppress 65 on bfd_map_over_sections | |
661 | #suppress 66 on bfd_map_over_sections | |
662 | #suppress 67 on bfd_map_over_sections | |
663 | #suppress 68 on bfd_map_over_sections | |
664 | #suppress 69 on bfd_map_over_sections | |
665 | #suppress 70 on bfd_map_over_sections | |
666 | #suppress 110 in bfd_map_over_sections | |
667 | #suppress 112 in bfd_map_over_sections | |
668 | #suppress 530 | |
669 | #suppress 590 in swap_exec_header | |
670 | #suppress 590 in _bfd_dummy_core_file_matches_executable_p | |
671 | #suppress 590 in bfd_dont_truncate_arname | |
672 | #suppress 590 on ignore | |
673 | #suppress 590 on abfd | |
674 | #setopt load_flags $(CFLAGS) | |
675 | #load $(CFILES) | |
a5c6b4b3 | 676 | |
99a42820 RP |
677 | |
678 | #----------------------------------------------------------------------------- | |
679 | # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT | |
680 | # | |
681 | # 'VERSION' file must be present and contain a string of the form "x.y" | |
682 | #----------------------------------------------------------------------------- | |
683 | ||
684 | ver960.c: FORCE | |
685 | rm -f ver960.c | |
686 | echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c | |
687 | ||
688 | ||
689 | # This target should be invoked before building a new release. | |
690 | # 'VERSION' file must be present and contain a string of the form "x.y" | |
691 | # | |
692 | roll: | |
693 | @V=`cat VERSION` ; \ | |
694 | MAJ=`sed 's/\..*//' VERSION` ; \ | |
695 | MIN=`sed 's/.*\.//' VERSION` ; \ | |
696 | V=$$MAJ.`expr $$MIN + 1` ; \ | |
697 | rm -f VERSION ; \ | |
698 | echo $$V >VERSION ; \ | |
699 | echo Version $$V | |
700 | ||
701 | # Dummy target to force execution of dependent targets. | |
702 | # | |
5176a6bc | 703 | force: |
99a42820 | 704 | |
44f795f7 ILT |
705 | install: $(ALLLIBS) |
706 | for f in $(ALLLIBS); do \ | |
52c6bc4d ILT |
707 | if [ "$$f" = "stamp-tshlink" ]; then \ |
708 | continue; \ | |
709 | fi; \ | |
48fd00b6 ILT |
710 | tf=lib`echo $$f | sed -e 's/^lib//' | sed '$(program_transform_name)'`; \ |
711 | rm -f $(libdir)/$$tf; \ | |
44f795f7 | 712 | if [ "$$f" = "$(SHLINK)" ]; then \ |
48fd00b6 ILT |
713 | ts=lib`echo $(SHLIB) | sed -e 's/^lib//' | sed '$(program_transform_name)'`; \ |
714 | ln -sf $$ts $(libdir)/$$tf; \ | |
44f795f7 | 715 | elif [ "$$f" = "$(SHLIB)" ]; then \ |
ab659fd6 | 716 | @INSTALL_SHLIB@ \ |
44f795f7 | 717 | else \ |
48fd00b6 ILT |
718 | $(INSTALL_DATA) $$f $(libdir)/$$tf; \ |
719 | $(RANLIB) $(libdir)/$$tf; \ | |
720 | chmod a-x $(libdir)/$$tf; \ | |
44f795f7 ILT |
721 | fi; \ |
722 | done | |
75ff7895 DZ |
723 | # Install BFD include file, and others that it needs. Install them |
724 | # both in GCC's include directory, and in the system include dir | |
725 | # if configured as $(oldincludedir) -- which it usually isnt. | |
a5220fb9 | 726 | $(INSTALL_DATA) $(BFD_H) $(includedir)/bfd.h |
6cabab78 | 727 | $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(includedir)/ansidecl.h |
89665c85 | 728 | $(INSTALL_DATA) $(INCDIR)/bfdlink.h $(includedir)/bfdlink.h |
6cabab78 | 729 | $(INSTALL_DATA) $(INCDIR)/obstack.h $(includedir)/obstack.h |
5d4c714e DM |
730 | -if test -z "$(oldincludedir)"; then true; else \ |
731 | test -d $(oldincludedir) || mkdir $(oldincludedir); \ | |
732 | $(INSTALL_DATA) $(BFD_H) $(oldincludedir)/bfd.h; \ | |
733 | $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(oldincludedir)/ansidecl.h; \ | |
89665c85 | 734 | $(INSTALL_DATA) $(INCDIR)/bfdlink.h $(oldincludedir)/bfdlink.h; \ |
5d4c714e | 735 | $(INSTALL_DATA) $(INCDIR)/obstack.h $(oldincludedir)/obstack.h; \ |
2c96ba79 | 736 | $(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS); \ |
5d4c714e | 737 | fi |
99a42820 | 738 | |
65d3ae6b | 739 | Makefile: Makefile.in config.status |
870015b1 ILT |
740 | CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status |
741 | ||
742 | config.h: stamp-h ; @true | |
936b870c ILT |
743 | stamp-h: config.in config.status |
744 | CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status | |
a5c6b4b3 | 745 | |
7fc1cd16 | 746 | config.status: configure configure.host config.bfd VERSION |
b10e9afb ILT |
747 | $(SHELL) config.status --recheck |
748 | ||
c6b399ce KR |
749 | # Have to get rid of .dep1 here so that "$?" later includes all of $(CFILES). |
750 | .dep: dep.sed $(CFILES) $(HFILES) bfd.h | |
751 | rm -f .dep1 | |
752 | $(MAKE) DEP=$(DEP) .dep1 | |
753 | sed -f dep.sed <.dep1 >.dep | |
754 | ||
d684720f | 755 | # This rule really wants a mkdep that runs "gcc -MM". |
767f22d5 FF |
756 | # The NetBSD mkdep overwrites any existing file contents, and doesn't insert |
757 | # the "DO NOT DELETE" line. | |
758 | # Other mkdep versions require a file that already exists, and do insert it. | |
759 | # Hence the weirdness.... | |
d684720f | 760 | .dep1: $(CFILES) |
8d0d6655 | 761 | rm -f .dep2 .dep2a |
d684720f | 762 | echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep2 |
767f22d5 | 763 | echo > .dep2a |
8d0d6655 | 764 | $(DEP) -f .dep2a $(ALL_CFLAGS) $? |
767f22d5 | 765 | sed -e '/DO NOT DELETE/d' -e '/^$$/d' < .dep2a >> .dep2 |
8d0d6655 | 766 | rm -f .dep2a |
653dd82a | 767 | $(srcdir)/../move-if-change .dep2 .dep1 |
d684720f | 768 | |
c6b399ce | 769 | dep.sed: dep-in.sed config.status |
d684720f KR |
770 | sed <$(srcdir)/dep-in.sed >dep.sed \ |
771 | -e 's!@BFD_H@!$(BFD_H)!' \ | |
772 | -e 's!@INCDIR@!$(INCDIR)!' \ | |
8c693660 | 773 | -e 's!@SRCDIR@!$(srcdir)!' |
d684720f | 774 | |
d684720f KR |
775 | dep: .dep |
776 | sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile | |
777 | cat .dep >> tmp-Makefile | |
653dd82a SG |
778 | $(srcdir)/../move-if-change tmp-Makefile Makefile |
779 | ||
780 | dep-in: .dep | |
781 | sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in | |
782 | cat .dep >> tmp-Makefile.in | |
783 | $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in | |
6f715d66 | 784 | |
5868184b | 785 | host-aout.o: Makefile |
6f715d66 | 786 | |
5868184b FF |
787 | # The following program can be used to generate a simple config file |
788 | # which can be folded into an h-XXX file for a new host, with some editing. | |
d01cd8fc | 789 | aout-params.h: gen-aout |
4e810849 | 790 | ./gen-aout host > aout-params.h |
5868184b FF |
791 | gen-aout: $(srcdir)/gen-aout.c Makefile |
792 | $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c | |
6f715d66 | 793 | |
34075964 PB |
794 | BFDIN_H= $(srcdir)/bfd-in2.h |
795 | ||
a5220fb9 | 796 | $(BFD_H): stmp-bfd.h ; @true |
75ff7895 | 797 | |
f4e14cb9 ILT |
798 | stmp-bfd.h: bfd-in3.h |
799 | rm -f bfd-tmp.h | |
800 | cp bfd-in3.h bfd-tmp.h | |
801 | $(srcdir)/../move-if-change bfd-tmp.h $(BFD_H) | |
802 | rm -f bfd-tmp.h | |
75ff7895 | 803 | touch stmp-bfd.h |
34075964 | 804 | |
f4e14cb9 ILT |
805 | bfd-in3.h: bfd-in2.h config.status |
806 | CONFIG_FILES=bfd-in3.h:bfd-in2.h CONFIG_HEADERS= $(SHELL) ./config.status | |
807 | ||
a5220fb9 | 808 | # Could really use a "copy-if-change"... |
12e7087f | 809 | headers: |
98c0c56d | 810 | (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS)) |
15db2044 KR |
811 | cp $(docdir)/bfd.h bfd-in2.h-new |
812 | $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h | |
6bb4c923 KR |
813 | cp $(docdir)/libbfd.h libbfd.h-new |
814 | $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h | |
815 | cp $(docdir)/libcoff.h libcoff.h-new | |
816 | $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h | |
12e7087f | 817 | |
66761e59 ILT |
818 | # The rules for the generated header files are here so that people can |
819 | # type `make bfd-in2.h' if they remove it. They are not run by default. | |
52c6bc4d | 820 | $(srcdir)/bfd-in2.h: |
44f795f7 | 821 | (cd $(docdir); $(MAKE) bfd.h $(FLAGS_TO_PASS)) |
66761e59 ILT |
822 | cp $(docdir)/bfd.h bfd-in2.h-new |
823 | $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h | |
52c6bc4d | 824 | $(srcdir)/libbfd.h: |
44f795f7 | 825 | (cd $(docdir); $(MAKE) libbfd.h $(FLAGS_TO_PASS)) |
66761e59 ILT |
826 | cp $(docdir)/libbfd.h libbfd.h-new |
827 | $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h | |
52c6bc4d | 828 | $(srcdir)/libcoff.h: |
44f795f7 | 829 | (cd $(docdir); $(MAKE) libcoff.h $(FLAGS_TO_PASS)) |
66761e59 ILT |
830 | cp $(docdir)/libcoff.h libcoff.h-new |
831 | $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h | |
832 | ||
12e7087f | 833 | bfd.info: |
fbee3571 | 834 | (cd $(docdir); $(MAKE) bfd.info $(FLAGS_TO_PASS)) |
12e7087f JG |
835 | |
836 | bfd.dvi: | |
98c0c56d | 837 | (cd $(docdir); $(MAKE) bfd.dvi $(FLAGS_TO_PASS)) |
12e7087f JG |
838 | |
839 | bfd.ps: | |
98c0c56d | 840 | (cd $(docdir); $(MAKE) bfd.ps $(FLAGS_TO_PASS)) |
12e7087f | 841 | |
8809320b | 842 | start-sanitize-arc: |
6ab826bd | 843 | elf32-arc.o: elf32-arc.c elf-bfd.h $(INCDIR)/elf/common.h \ |
8809320b ILT |
844 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ |
845 | $(INCDIR)/elf/arc.h elf32-target.h | |
846 | end-sanitize-arc: | |
847 | ||
50bd50d4 MH |
848 | start-sanitize-d10v: |
849 | elf32-d10v.o: elf32-d10v.c elf-bfd.h $(INCDIR)/elf/common.h \ | |
850 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
851 | $(INCDIR)/elf/d10v.h elf32-target.h | |
852 | end-sanitize-d10v: | |
853 | ||
f0c12b73 DE |
854 | start-sanitize-m32r: |
855 | elf32-m32r.o: elf32-m32r.c elf-bfd.h $(INCDIR)/elf/common.h \ | |
856 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
efc2b064 | 857 | elf32-target.h |
f0c12b73 DE |
858 | end-sanitize-m32r: |
859 | ||
860 | start-sanitize-v850: | |
861 | cpu-v850.o: cpu-v850.c | |
862 | elf32-v850.o: elf32-v850.c $(INCDIR)/bfdlink.h elf-bfd.h \ | |
863 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
864 | elf32-target.h | |
865 | end-sanitize-v850: | |
866 | ||
44f795f7 ILT |
867 | $(OFILES): stamp-picdir |
868 | ||
869 | stamp-picdir: | |
870 | if [ -n "$(PICFLAG)" ] && [ ! -d pic ]; then \ | |
871 | mkdir pic; \ | |
872 | else true; fi | |
873 | touch stamp-picdir | |
874 | ||
12e7087f JG |
875 | # What appears below is generated by a hacked mkdep using gcc -MM. |
876 | ||
877 | # DO NOT DELETE THIS LINE -- mkdep uses it. | |
cf587de8 | 878 | # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. |
8d0d6655 KR |
879 | archive.o: archive.c $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h |
880 | archures.o: archures.c | |
7ce8b9d1 | 881 | bfd.o: bfd.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \ |
130308bf | 882 | $(INCDIR)/coff/sym.h libcoff.h libecoff.h $(INCDIR)/coff/ecoff.h \ |
6ab826bd | 883 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
130308bf | 884 | $(INCDIR)/elf/external.h |
7ce8b9d1 | 885 | cache.o: cache.c |
8d0d6655 KR |
886 | coffgen.o: coffgen.c $(INCDIR)/coff/internal.h libcoff.h \ |
887 | $(INCDIR)/bfdlink.h | |
888 | corefile.o: corefile.c | |
889 | format.o: format.c | |
890 | init.o: init.c | |
891 | libbfd.o: libbfd.c | |
892 | opncls.o: opncls.c | |
893 | reloc.o: reloc.c $(INCDIR)/bfdlink.h | |
894 | section.o: section.c | |
86aac8ea ILT |
895 | syms.o: syms.c $(INCDIR)/bfdlink.h $(INCDIR)/aout/stab_gnu.h \ |
896 | $(INCDIR)/aout/stab.def | |
dee99794 | 897 | targets.o: targets.c $(INCDIR)/fnmatch.h targmatch.h |
8d0d6655 KR |
898 | hash.o: hash.c |
899 | linker.o: linker.c $(INCDIR)/bfdlink.h genlink.h | |
900 | elf.o: elf.c $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \ | |
901 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h | |
661df78b | 902 | srec.o: srec.c $(INCDIR)/libiberty.h |
29407610 | 903 | binary.o: binary.c |
661df78b | 904 | tekhex.o: tekhex.c $(INCDIR)/libiberty.h |
767f22d5 | 905 | ihex.o: ihex.c $(INCDIR)/libiberty.h |
d1bf45aa | 906 | stabs.o: stabs.c $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def |
c877bdf1 ILT |
907 | stab-syms.o: stab-syms.c libaout.h $(INCDIR)/bfdlink.h \ |
908 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab.def | |
8d0d6655 KR |
909 | cpu-a29k.o: cpu-a29k.c |
910 | cpu-alpha.o: cpu-alpha.c | |
911 | cpu-arm.o: cpu-arm.c | |
912 | cpu-h8300.o: cpu-h8300.c | |
913 | cpu-h8500.o: cpu-h8500.c | |
914 | cpu-hppa.o: cpu-hppa.c | |
915 | cpu-i386.o: cpu-i386.c | |
cf587de8 | 916 | cpu-i860.o: cpu-i860.c |
8d0d6655 KR |
917 | cpu-i960.o: cpu-i960.c |
918 | cpu-m68k.o: cpu-m68k.c | |
919 | cpu-m88k.o: cpu-m88k.c | |
920 | cpu-mips.o: cpu-mips.c | |
c00ae065 JL |
921 | cpu-mn10200.o: cpu-mn10200.c |
922 | cpu-mn10300.o: cpu-mn10300.c | |
c877bdf1 | 923 | cpu-ns32k.o: cpu-ns32k.c ns32k.h |
8d0d6655 KR |
924 | cpu-powerpc.o: cpu-powerpc.c |
925 | cpu-rs6000.o: cpu-rs6000.c | |
926 | cpu-sh.o: cpu-sh.c | |
927 | cpu-sparc.o: cpu-sparc.c | |
928 | cpu-vax.o: cpu-vax.c | |
929 | cpu-we32k.o: cpu-we32k.c | |
930 | cpu-w65.o: cpu-w65.c | |
931 | cpu-z8k.o: cpu-z8k.c | |
932 | aout-adobe.o: aout-adobe.c $(INCDIR)/aout/adobe.h $(INCDIR)/aout/stab_gnu.h \ | |
933 | $(INCDIR)/aout/stab.def libaout.h $(INCDIR)/bfdlink.h | |
dee99794 ILT |
934 | aout-arm.o: aout-arm.c libaout.h $(INCDIR)/bfdlink.h \ |
935 | $(INCDIR)/aout/aout64.h aoutx.h $(INCDIR)/aout/stab_gnu.h \ | |
936 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h | |
8d0d6655 | 937 | aout-ns32k.o: aout-ns32k.c $(INCDIR)/aout/aout64.h \ |
c877bdf1 | 938 | ns32k.h libaout.h $(INCDIR)/bfdlink.h |
dee99794 ILT |
939 | aout-sparcle.o: aout-sparcle.c $(INCDIR)/bfdlink.h \ |
940 | libaout.h aoutf1.h $(INCDIR)/aout/sun4.h $(INCDIR)/aout/aout64.h \ | |
941 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
942 | aout-target.h | |
7ce8b9d1 | 943 | aout0.o: aout0.c aoutf1.h $(INCDIR)/aout/sun4.h libaout.h \ |
0b72c410 KR |
944 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ |
945 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h | |
8d0d6655 KR |
946 | aout32.o: aout32.c aoutx.h $(INCDIR)/bfdlink.h libaout.h \ |
947 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
948 | $(INCDIR)/aout/ar.h | |
949 | bout.o: bout.c $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/bout.h \ | |
950 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h | |
951 | cf-i386lynx.o: cf-i386lynx.c coff-i386.c $(INCDIR)/coff/i386.h \ | |
3cd942de ILT |
952 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ |
953 | coffcode.h coffswap.h | |
8d0d6655 KR |
954 | cf-m68klynx.o: cf-m68klynx.c coff-m68k.c $(INCDIR)/coff/m68k.h \ |
955 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ | |
956 | coffcode.h coffswap.h | |
957 | cf-sparclynx.o: cf-sparclynx.c coff-sparc.c $(INCDIR)/coff/sparc.h \ | |
3cd942de ILT |
958 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ |
959 | coffcode.h coffswap.h | |
7ce8b9d1 | 960 | coff-a29k.o: coff-a29k.c $(INCDIR)/coff/a29k.h $(INCDIR)/coff/internal.h \ |
3cd942de | 961 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
8d0d6655 KR |
962 | coff-apollo.o: coff-apollo.c $(INCDIR)/coff/apollo.h \ |
963 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ | |
356cd465 | 964 | coffcode.h coffswap.h |
8d0d6655 KR |
965 | coff-arm.o: coff-arm.c $(INCDIR)/coff/arm.h $(INCDIR)/coff/internal.h \ |
966 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
f2e33e27 | 967 | coff-aux.o: coff-aux.c $(INCDIR)/coff/aux-coff.h $(INCDIR)/coff/internal.h \ |
d19df9b5 ILT |
968 | $(INCDIR)/coff/m68k.h coff-m68k.c libcoff.h $(INCDIR)/bfdlink.h \ |
969 | coffcode.h coffswap.h | |
c877bdf1 ILT |
970 | coff-h8300.o: coff-h8300.c $(INCDIR)/bfdlink.h genlink.h \ |
971 | $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h \ | |
972 | coffcode.h coffswap.h | |
8d0d6655 KR |
973 | coff-h8500.o: coff-h8500.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/h8500.h \ |
974 | $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h | |
975 | coff-i386.o: coff-i386.c $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h \ | |
976 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
cf587de8 ILT |
977 | coff-i860.o: coff-i860.c $(INCDIR)/coff/i860.h $(INCDIR)/coff/internal.h \ |
978 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
8d0d6655 KR |
979 | coff-go32.o: coff-go32.c coff-i386.c $(INCDIR)/coff/i386.h \ |
980 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ | |
3cd942de | 981 | coffcode.h coffswap.h |
8d0d6655 KR |
982 | coff-i960.o: coff-i960.c $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h \ |
983 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
984 | coff-m68k.o: coff-m68k.c $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h \ | |
3cd942de | 985 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
7ce8b9d1 | 986 | coff-m88k.o: coff-m88k.c $(INCDIR)/coff/m88k.h $(INCDIR)/coff/internal.h \ |
3cd942de | 987 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
7ce8b9d1 | 988 | coff-mips.o: coff-mips.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \ |
d5d53b0a JW |
989 | $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \ |
990 | $(INCDIR)/coff/mips.h libcoff.h libecoff.h coffswap.h \ | |
991 | ecoffswap.h | |
8d0d6655 KR |
992 | coff-pmac.o: coff-pmac.c coff-rs6000.c $(INCDIR)/coff/internal.h \ |
993 | $(INCDIR)/coff/rs6000.h libcoff.h $(INCDIR)/bfdlink.h \ | |
994 | coffcode.h coffswap.h | |
995 | coff-rs6000.o: coff-rs6000.c $(INCDIR)/coff/internal.h \ | |
996 | $(INCDIR)/coff/rs6000.h libcoff.h $(INCDIR)/bfdlink.h \ | |
997 | coffcode.h coffswap.h | |
7ce8b9d1 | 998 | coff-sh.o: coff-sh.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h \ |
130308bf | 999 | $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h |
8d0d6655 KR |
1000 | coff-sparc.o: coff-sparc.c $(INCDIR)/coff/sparc.h $(INCDIR)/coff/internal.h \ |
1001 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
1002 | coff-u68k.o: coff-u68k.c coff-m68k.c $(INCDIR)/coff/m68k.h \ | |
1003 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ | |
1004 | coffcode.h coffswap.h | |
7ce8b9d1 | 1005 | coff-we32k.o: coff-we32k.c $(INCDIR)/coff/we32k.h $(INCDIR)/coff/internal.h \ |
3cd942de | 1006 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
ac400c0e ILT |
1007 | coff-w65.o: coff-w65.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/w65.h \ |
1008 | $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h | |
8d0d6655 | 1009 | coff-z8k.o: coff-z8k.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/z8k.h \ |
130308bf | 1010 | $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h |
8d0d6655 KR |
1011 | cofflink.o: cofflink.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \ |
1012 | libcoff.h | |
1013 | ecoff.o: ecoff.c $(INCDIR)/bfdlink.h $(INCDIR)/aout/ar.h \ | |
1014 | $(INCDIR)/aout/ranlib.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
1015 | libaout.h $(INCDIR)/aout/aout64.h $(INCDIR)/coff/internal.h \ | |
1016 | $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \ | |
1017 | libcoff.h libecoff.h | |
1018 | ecofflink.o: ecofflink.c $(INCDIR)/bfdlink.h $(INCDIR)/aout/stab_gnu.h \ | |
1019 | $(INCDIR)/aout/stab.def $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ | |
1020 | $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h | |
1021 | elf32-gen.o: elf32-gen.c elf-bfd.h $(INCDIR)/elf/common.h \ | |
1022 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
1023 | elf32-target.h | |
1024 | elf32-hppa.o: elf32-hppa.c $(INCDIR)/bfdlink.h elf-bfd.h \ | |
130308bf | 1025 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ |
8d0d6655 | 1026 | elf32-hppa.h libhppa.h $(INCDIR)/elf/hppa.h hppa_stubs.h \ |
130308bf | 1027 | elf32-target.h |
6ab826bd | 1028 | elf32-i386.o: elf32-i386.c $(INCDIR)/bfdlink.h elf-bfd.h \ |
7ce8b9d1 ILT |
1029 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ |
1030 | elf32-target.h | |
6ab826bd | 1031 | elf32-i860.o: elf32-i860.c elf-bfd.h $(INCDIR)/elf/common.h \ |
7ce8b9d1 ILT |
1032 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ |
1033 | elf32-target.h | |
6ab826bd | 1034 | elf32-m68k.o: elf32-m68k.c $(INCDIR)/bfdlink.h elf-bfd.h \ |
8809320b | 1035 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ |
7ce8b9d1 | 1036 | elf32-target.h |
6ab826bd | 1037 | elf32-m88k.o: elf32-m88k.c elf-bfd.h $(INCDIR)/elf/common.h \ |
7ce8b9d1 ILT |
1038 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ |
1039 | elf32-target.h | |
1040 | elf32-mips.o: elf32-mips.c $(INCDIR)/bfdlink.h genlink.h \ | |
6ab826bd | 1041 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
130308bf ILT |
1042 | $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/coff/sym.h \ |
1043 | $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \ | |
8d12f138 | 1044 | $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h ecoffswap.h \ |
d5d53b0a | 1045 | elf32-target.h |
c00ae065 JL |
1046 | elf32-mn10200.o: elf32-mn10200.c elf-bfd.h $(INCDIR)/elf/common.h \ |
1047 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
1048 | elf32-target.h | |
1049 | elf32-mn10300.o: elf32-mn10300.c elf-bfd.h $(INCDIR)/elf/common.h \ | |
1050 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
1051 | elf32-target.h | |
6ab826bd | 1052 | elf32-ppc.o: elf32-ppc.c $(INCDIR)/bfdlink.h elf-bfd.h \ |
8809320b ILT |
1053 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ |
1054 | $(INCDIR)/elf/ppc.h elf32-target.h | |
f0c12b73 DE |
1055 | elf32-sh.o: elf32-sh.c $(INCDIR)/bfdlink.h elf-bfd.h \ |
1056 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1057 | elf32-target.h | |
8d0d6655 KR |
1058 | elf32-sparc.o: elf32-sparc.c $(INCDIR)/bfdlink.h elf-bfd.h \ |
1059 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
86aac8ea | 1060 | $(INCDIR)/elf/sparc.h elf32-target.h |
8d0d6655 | 1061 | elf32.o: elf32.c elfcode.h $(INCDIR)/bfdlink.h elf-bfd.h \ |
b10e9afb ILT |
1062 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ |
1063 | elfcore.h elflink.h | |
8d0d6655 KR |
1064 | elflink.o: elflink.c $(INCDIR)/bfdlink.h elf-bfd.h \ |
1065 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h | |
dee99794 ILT |
1066 | hp300bsd.o: hp300bsd.c libaout.h $(INCDIR)/bfdlink.h \ |
1067 | aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1068 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
7ce8b9d1 | 1069 | hp300hpux.o: hp300hpux.c $(INCDIR)/aout/hp300hpux.h \ |
130308bf ILT |
1070 | aoutx.h $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/aout/aout64.h \ |
1071 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
1072 | aout-target.h | |
c00ae065 | 1073 | som.o: som.c som.h ../bfd/sysdep.h libhppa.h |
f0c12b73 DE |
1074 | i386aout.o: i386aout.c $(INCDIR)/aout/aout64.h libaout.h \ |
1075 | $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/stab_gnu.h \ | |
8d0d6655 KR |
1076 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h |
1077 | i386bsd.o: i386bsd.c libaout.h $(INCDIR)/bfdlink.h \ | |
1078 | aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1079 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
dee99794 ILT |
1080 | i386dynix.o: i386dynix.c $(INCDIR)/aout/dynix3.h aoutx.h \ |
1081 | $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/aout/aout64.h \ | |
1082 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
1083 | aout-target.h | |
767f22d5 FF |
1084 | i386freebsd.o: i386freebsd.c freebsd.h libaout.h $(INCDIR)/bfdlink.h \ |
1085 | aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1086 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
8d0d6655 KR |
1087 | i386linux.o: i386linux.c $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ |
1088 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h libaout.h \ | |
1089 | $(INCDIR)/bfdlink.h aout-target.h | |
0b72c410 KR |
1090 | i386lynx.o: i386lynx.c libaout.h $(INCDIR)/bfdlink.h \ |
1091 | $(INCDIR)/aout/aout64.h aout-target.h $(INCDIR)/aout/stab_gnu.h \ | |
1092 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
8d0d6655 KR |
1093 | i386msdos.o: i386msdos.c libaout.h $(INCDIR)/bfdlink.h |
1094 | i386netbsd.o: i386netbsd.c netbsd.h libaout.h $(INCDIR)/bfdlink.h \ | |
1095 | aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1096 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1097 | i386mach3.o: i386mach3.c $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1098 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h libaout.h \ | |
1099 | $(INCDIR)/bfdlink.h aout-target.h | |
1100 | i386os9k.o: i386os9k.c $(INCDIR)/bfdlink.h libaout.h \ | |
1101 | $(INCDIR)/os9k.h | |
1102 | ieee.o: ieee.c $(INCDIR)/ieee.h libieee.h | |
dee99794 ILT |
1103 | m68k4knetbsd.o: m68k4knetbsd.c netbsd.h libaout.h $(INCDIR)/bfdlink.h \ |
1104 | aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1105 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
c877bdf1 ILT |
1106 | m68klinux.o: m68klinux.c $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ |
1107 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h libaout.h \ | |
1108 | $(INCDIR)/bfdlink.h aout-target.h | |
0b72c410 KR |
1109 | m68klynx.o: m68klynx.c libaout.h $(INCDIR)/bfdlink.h \ |
1110 | $(INCDIR)/aout/aout64.h aout-target.h $(INCDIR)/aout/stab_gnu.h \ | |
1111 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
661df78b KR |
1112 | m68knetbsd.o: m68knetbsd.c netbsd.h libaout.h $(INCDIR)/bfdlink.h \ |
1113 | aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1114 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
8d0d6655 | 1115 | m88kmach3.o: m88kmach3.c libaout.h $(INCDIR)/bfdlink.h \ |
c768bd3f ILT |
1116 | aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ |
1117 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
8d0d6655 | 1118 | mipsbsd.o: mipsbsd.c libaout.h $(INCDIR)/bfdlink.h \ |
c768bd3f ILT |
1119 | aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ |
1120 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
8d0d6655 KR |
1121 | newsos3.o: newsos3.c $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ |
1122 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h libaout.h \ | |
1123 | $(INCDIR)/bfdlink.h aout-target.h | |
1124 | nlm.o: nlm.c libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ | |
1125 | $(INCDIR)/nlm/external.h | |
1126 | nlm32-i386.o: nlm32-i386.c $(INCDIR)/nlm/i386-ext.h \ | |
1127 | libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ | |
1128 | $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h | |
1129 | nlm32-sparc.o: nlm32-sparc.c $(INCDIR)/nlm/sparc32-ext.h \ | |
1130 | libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ | |
1131 | $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h | |
1132 | nlm32-ppc.o: nlm32-ppc.c $(INCDIR)/nlm/ppc-ext.h libnlm.h \ | |
1133 | $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h \ | |
1134 | nlmswap.h nlm-target.h | |
1135 | nlm32.o: nlm32.c nlmcode.h libnlm.h $(INCDIR)/nlm/common.h \ | |
1136 | $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h | |
1137 | ns32knetbsd.o: ns32knetbsd.c netbsd.h libaout.h $(INCDIR)/bfdlink.h \ | |
1138 | aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1139 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1140 | oasys.o: oasys.c $(INCDIR)/oasys.h liboasys.h | |
1141 | pc532-mach.o: pc532-mach.c libaout.h $(INCDIR)/bfdlink.h \ | |
1142 | $(INCDIR)/aout/aout64.h aout-target.h $(INCDIR)/aout/stab_gnu.h \ | |
1143 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1144 | pe-arm.o: pe-arm.c coff-arm.c $(INCDIR)/coff/arm.h \ | |
8809320b | 1145 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ |
356cd465 | 1146 | $(INCDIR)/bfdlink.h coffcode.h peicode.h |
8d0d6655 | 1147 | pei-arm.o: pei-arm.c coff-arm.c $(INCDIR)/coff/arm.h \ |
8809320b | 1148 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ |
a52a3ce8 | 1149 | $(INCDIR)/bfdlink.h coffcode.h peicode.h |
8d0d6655 | 1150 | pe-i386.o: pe-i386.c coff-i386.c $(INCDIR)/coff/i386.h \ |
4e98461f | 1151 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ |
356cd465 | 1152 | $(INCDIR)/bfdlink.h coffcode.h peicode.h |
8d0d6655 | 1153 | pei-i386.o: pei-i386.c coff-i386.c $(INCDIR)/coff/i386.h \ |
4e98461f | 1154 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ |
a52a3ce8 | 1155 | $(INCDIR)/bfdlink.h coffcode.h peicode.h |
356cd465 ILT |
1156 | pe-ppc.o: pe-ppc.c coff-ppc.c $(INCDIR)/coff/powerpc.h \ |
1157 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ | |
1158 | $(INCDIR)/bfdlink.h coffcode.h peicode.h | |
1159 | pei-ppc.o: pei-ppc.c coff-ppc.c $(INCDIR)/coff/powerpc.h \ | |
1160 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ | |
1161 | $(INCDIR)/bfdlink.h coffcode.h peicode.h | |
50bd50d4 | 1162 | ppcboot.o: ppcboot.c |
8d0d6655 KR |
1163 | reloc16.o: reloc16.c $(INCDIR)/bfdlink.h genlink.h \ |
1164 | $(INCDIR)/coff/internal.h libcoff.h | |
dee99794 ILT |
1165 | riscix.o: riscix.c libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \ |
1166 | aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
1167 | $(INCDIR)/aout/ar.h | |
8d0d6655 KR |
1168 | sparclynx.o: sparclynx.c $(INCDIR)/aout/sun4.h libaout.h \ |
1169 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1170 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h | |
1171 | sparcnetbsd.o: sparcnetbsd.c netbsd.h libaout.h $(INCDIR)/bfdlink.h \ | |
1172 | aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1173 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
8d0d6655 KR |
1174 | sunos.o: sunos.c $(INCDIR)/bfdlink.h libaout.h aoutf1.h \ |
1175 | $(INCDIR)/aout/sun4.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1176 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h | |
1177 | versados.o: versados.c $(INCDIR)/libiberty.h | |
356cd465 ILT |
1178 | xcofflink.o: xcofflink.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \ |
1179 | libcoff.h | |
8d0d6655 KR |
1180 | aout64.o: aout64.c aoutx.h $(INCDIR)/bfdlink.h libaout.h \ |
1181 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
1182 | $(INCDIR)/aout/ar.h | |
1183 | coff-alpha.o: coff-alpha.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \ | |
1184 | $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \ | |
86aac8ea ILT |
1185 | $(INCDIR)/coff/alpha.h $(INCDIR)/aout/ar.h libcoff.h \ |
1186 | libecoff.h coffswap.h ecoffswap.h | |
8d0d6655 KR |
1187 | demo64.o: demo64.c aoutf1.h $(INCDIR)/aout/sun4.h libaout.h \ |
1188 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1189 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h | |
50bd50d4 MH |
1190 | elf64-alpha.o: elf64-alpha.c elf-bfd.h $(INCDIR)/elf/common.h \ |
1191 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
1192 | $(INCDIR)/elf/alpha.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ | |
1193 | $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h \ | |
1194 | $(INCDIR)/aout/ar.h libcoff.h libecoff.h ecoffswap.h \ | |
1195 | elf64-target.h | |
8d0d6655 KR |
1196 | elf64-gen.o: elf64-gen.c elf-bfd.h $(INCDIR)/elf/common.h \ |
1197 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
1198 | elf64-target.h | |
f0c12b73 DE |
1199 | elf64-mips.o: elf64-mips.c $(INCDIR)/aout/ar.h $(INCDIR)/bfdlink.h \ |
1200 | genlink.h elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
50bd50d4 MH |
1201 | $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/coff/sym.h \ |
1202 | $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \ | |
1203 | $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h ecoffswap.h \ | |
1204 | elf64-target.h | |
8d0d6655 KR |
1205 | elf64-sparc.o: elf64-sparc.c elf-bfd.h $(INCDIR)/elf/common.h \ |
1206 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
f2e33e27 | 1207 | $(INCDIR)/elf/sparc.h elf64-target.h |
8d0d6655 KR |
1208 | elf64.o: elf64.c elfcode.h $(INCDIR)/bfdlink.h elf-bfd.h \ |
1209 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1210 | elfcore.h elflink.h | |
50bd50d4 MH |
1211 | evax-alpha.o: evax-alpha.c $(INCDIR)/bfdlink.h evax.h |
1212 | evax-egsd.o: evax-egsd.c $(INCDIR)/bfdlink.h evax.h | |
1213 | evax-etir.o: evax-etir.c $(INCDIR)/bfdlink.h evax.h | |
1214 | evax-emh.o: evax-emh.c $(INCDIR)/bfdlink.h evax.h | |
1215 | evax-misc.o: evax-misc.c $(INCDIR)/bfdlink.h evax.h | |
8d0d6655 KR |
1216 | nlm32-alpha.o: nlm32-alpha.c $(INCDIR)/nlm/alpha-ext.h \ |
1217 | libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ | |
1218 | $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h | |
1219 | nlm64.o: nlm64.c nlmcode.h libnlm.h $(INCDIR)/nlm/common.h \ | |
1220 | $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h | |
8d0d6655 KR |
1221 | aix386-core.o: aix386-core.c $(INCDIR)/coff/i386.h \ |
1222 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h | |
1223 | hpux-core.o: hpux-core.c | |
1224 | irix-core.o: irix-core.c | |
1225 | lynx-core.o: lynx-core.c | |
1226 | osf-core.o: osf-core.c | |
86aac8ea | 1227 | trad-core.o: trad-core.c libaout.h $(INCDIR)/bfdlink.h |
767f22d5 | 1228 | cisco-core.o: cisco-core.c |
cf587de8 | 1229 | # IF YOU PUT ANYTHING HERE IT WILL GO AWAY |