]>
Commit | Line | Data |
---|---|---|
252b5132 RH |
1 | ## Process this file with automake to generate Makefile.in |
2 | ||
3 | ## Work around apparent automake bug. | |
4 | INTLLIBS = @INTLLIBS@ | |
5 | ||
2251dd89 | 6 | AUTOMAKE_OPTIONS = 1.8 cygnus dejagnu |
252b5132 RH |
7 | |
8 | SUBDIRS = doc po | |
bfbdcf04 DJ |
9 | # Automake should figure this out on its own. It doesn't, because |
10 | # of the "cygnus" option. But distclean still wants it. | |
11 | DIST_SUBDIRS = $(SUBDIRS) | |
252b5132 RH |
12 | |
13 | tooldir = $(exec_prefix)/$(target_alias) | |
14 | ||
9c46fb1b AM |
15 | YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo @YACC@ ; fi` |
16 | LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo @LEX@ ; fi` | |
252b5132 | 17 | |
a2d91340 AC |
18 | WARN_CFLAGS = @WARN_CFLAGS@ |
19 | AM_CFLAGS = $(WARN_CFLAGS) | |
20 | ||
41b49281 | 21 | MKDEP = gcc -MM |
252b5132 RH |
22 | |
23 | TARG_CPU = @target_cpu_type@ | |
24 | TARG_CPU_C = $(srcdir)/config/tc-@[email protected] | |
25 | TARG_CPU_O = tc-@[email protected] | |
26 | TARG_CPU_H = $(srcdir)/config/tc-@[email protected] | |
27 | OBJ_FORMAT_C = $(srcdir)/config/obj-@[email protected] | |
28 | OBJ_FORMAT_O = obj-@[email protected] | |
29 | OBJ_FORMAT_H = $(srcdir)/config/obj-@[email protected] | |
30 | TARG_ENV_H = $(srcdir)/config/te-@[email protected] | |
31 | ATOF_TARG_C = $(srcdir)/config/atof-@[email protected] | |
32 | ATOF_TARG_O = atof-@[email protected] | |
33 | ||
34 | # use @target_cpu_type@ for refering to configured target name | |
35 | IT_HDRS=itbl-parse.h $(srcdir)/itbl-ops.h | |
36 | IT_SRCS=itbl-parse.c itbl-lex.c $(srcdir)/itbl-ops.c | |
37 | IT_DEPS=$(srcdir)/itbl-parse.y $(srcdir)/itbl-lex.l $(srcdir)/config/itbl-@[email protected] | |
38 | IT_OBJS=itbl-parse.o itbl-lex.o itbl-ops.o | |
39 | ||
40 | # CPU types. This is only used for dependency information. | |
41 | ||
42 | CPU_TYPES = \ | |
43 | a29k \ | |
44 | alpha \ | |
45 | arc \ | |
46 | arm \ | |
ec694b89 | 47 | avr \ |
3bcbcc3d | 48 | cris \ |
1fe1f39c | 49 | crx \ |
252b5132 RH |
50 | d10v \ |
51 | d30v \ | |
d172d4ba | 52 | dlx \ |
252b5132 | 53 | fr30 \ |
0ebb9a87 | 54 | frv \ |
252b5132 RH |
55 | h8300 \ |
56 | h8500 \ | |
57 | hppa \ | |
800eeca4 | 58 | ia64 \ |
5b93d8bb | 59 | i370 \ |
252b5132 RH |
60 | i386 \ |
61 | i860 \ | |
62 | i960 \ | |
a40cbfa3 | 63 | ip2k \ |
252b5132 | 64 | m32r \ |
60bcf0fa | 65 | m68hc11 \ |
252b5132 RH |
66 | m68k \ |
67 | m88k \ | |
68 | mcore \ | |
69 | mips \ | |
3c3bdf30 | 70 | mmix \ |
252b5132 RH |
71 | mn10200 \ |
72 | mn10300 \ | |
2469cfa2 | 73 | msp430 \ |
252b5132 | 74 | ns32k \ |
c7e40348 | 75 | openrisc \ |
3b16e843 | 76 | or32 \ |
e135f41b | 77 | pdp11 \ |
041dd5a9 | 78 | pj \ |
252b5132 | 79 | ppc \ |
a85d7ed0 | 80 | s390 \ |
252b5132 | 81 | sh \ |
eb1e0e80 | 82 | sh64 \ |
252b5132 RH |
83 | sparc \ |
84 | tahoe \ | |
85 | tic30 \ | |
98199d8f | 86 | tic4x \ |
39bec121 | 87 | tic54x \ |
252b5132 RH |
88 | tic80 \ |
89 | vax \ | |
90 | w65 \ | |
91 | v850 \ | |
93fbbb04 | 92 | xstormy16 \ |
e0001a05 | 93 | xtensa \ |
252b5132 RH |
94 | z8k |
95 | ||
96 | # Object format types. This is only used for dependency information. | |
98aa84af | 97 | # We deliberately omit SOM, since it does not work as a cross assembler. |
252b5132 RH |
98 | |
99 | OBJ_FORMATS = \ | |
100 | aout \ | |
101 | bout \ | |
102 | coff \ | |
103 | ecoff \ | |
104 | elf \ | |
105 | evax \ | |
106 | hp300 \ | |
107 | ieee \ | |
108 | vms | |
109 | ||
110 | # This is an sh case which sets valid according to whether the CPU | |
111 | # type in the shell variable c and the OS type in the shell variable o | |
112 | # are supported. This helps cuts down on the amount of dependency | |
113 | # information. | |
114 | ||
115 | CPU_OBJ_VALID = \ | |
116 | valid= ; \ | |
117 | case $$o in \ | |
118 | aout) \ | |
119 | case $$c in \ | |
279500de | 120 | a29k | arm | cris | i386 | m68k | ns32k | pdp11 | sparc | tahoe | tic30 | vax) \ |
252b5132 RH |
121 | valid=yes ;; \ |
122 | esac ;; \ | |
123 | bout) \ | |
124 | case $$c in \ | |
125 | i960) valid=yes ;; \ | |
126 | esac ;; \ | |
43c34dee HPN |
127 | coff) valid=yes; \ |
128 | case $$c in \ | |
b95d15c6 | 129 | cris | i860 | mmix | sh64) \ |
43c34dee HPN |
130 | valid= ;; \ |
131 | esac ;; \ | |
252b5132 RH |
132 | ecoff) \ |
133 | case $$c in \ | |
134 | mips | alpha) valid=yes ;; \ | |
135 | esac ;; \ | |
136 | elf) valid=yes ;; \ | |
137 | evax) \ | |
138 | case $$c in \ | |
139 | alpha) valid=yes ;; \ | |
140 | esac ;; \ | |
141 | hp300) \ | |
142 | case $$c in \ | |
143 | m68k) valid=yes ;; \ | |
144 | esac ;; \ | |
145 | vms) \ | |
146 | case $$c in \ | |
147 | vax) valid=yes ;; \ | |
148 | esac ;; \ | |
149 | esac; | |
150 | ||
16adf844 | 151 | # These are like CPU_TYPES and CPU_OBJ_VALID, for the obj=multi case. |
252b5132 | 152 | |
3bcbcc3d | 153 | MULTI_CPU_TYPES = i386 mips cris |
16adf844 AM |
154 | |
155 | MULTI_CPU_OBJ_VALID = \ | |
252b5132 | 156 | valid= ; \ |
16adf844 AM |
157 | case $$o in \ |
158 | aout) \ | |
159 | case $$c in \ | |
3bcbcc3d HPN |
160 | i386 | cris) valid=yes ;; \ |
161 | esac ;; \ | |
162 | coff) \ | |
163 | case $$c in \ | |
164 | i386 | mips) valid=yes ;; \ | |
16adf844 | 165 | esac ;; \ |
16adf844 AM |
166 | ecoff) \ |
167 | case $$c in \ | |
168 | mips) valid=yes ;; \ | |
169 | esac ;; \ | |
170 | elf) valid=yes ;; \ | |
252b5132 RH |
171 | esac; |
172 | ||
173 | # Regular source files. | |
174 | ||
175 | GAS_CFILES = \ | |
176 | app.c \ | |
177 | as.c \ | |
178 | atof-generic.c \ | |
179 | bignum-copy.c \ | |
180 | cond.c \ | |
181 | depend.c \ | |
fac0d250 | 182 | dwarf2dbg.c \ |
54cfded0 | 183 | dw2gencfi.c \ |
252b5132 RH |
184 | ecoff.c \ |
185 | ehopt.c \ | |
186 | expr.c \ | |
187 | flonum-copy.c \ | |
188 | flonum-konst.c \ | |
189 | flonum-mult.c \ | |
190 | frags.c \ | |
191 | hash.c \ | |
192 | input-file.c \ | |
193 | input-scrub.c \ | |
194 | listing.c \ | |
195 | literal.c \ | |
196 | macro.c \ | |
197 | messages.c \ | |
198 | output-file.c \ | |
199 | read.c \ | |
200 | sb.c \ | |
201 | stabs.c \ | |
202 | subsegs.c \ | |
203 | symbols.c \ | |
204 | write.c | |
205 | ||
fea17916 | 206 | CFILES = $(GAS_CFILES) itbl-ops.c |
252b5132 RH |
207 | |
208 | HFILES = \ | |
209 | as.h \ | |
210 | asintl.h \ | |
211 | bignum.h \ | |
212 | bit_fix.h \ | |
213 | cgen.h \ | |
fac0d250 | 214 | dwarf2dbg.h \ |
54cfded0 | 215 | dw2gencfi.h \ |
252b5132 RH |
216 | ecoff.h \ |
217 | emul-target.h \ | |
218 | emul.h \ | |
219 | expr.h \ | |
220 | flonum.h \ | |
221 | frags.h \ | |
222 | hash.h \ | |
223 | input-file.h \ | |
224 | itbl-ops.h \ | |
225 | listing.h \ | |
226 | macro.h \ | |
227 | obj.h \ | |
228 | output-file.h \ | |
229 | read.h \ | |
230 | sb.h \ | |
231 | struc-symbol.h \ | |
232 | subsegs.h \ | |
233 | symbols.h \ | |
234 | tc.h \ | |
235 | write.h | |
236 | ||
237 | # CPU files in config. | |
238 | ||
239 | TARGET_CPU_CFILES = \ | |
240 | config/tc-a29k.c \ | |
241 | config/tc-alpha.c \ | |
242 | config/tc-arc.c \ | |
243 | config/tc-arm.c \ | |
ec694b89 | 244 | config/tc-avr.c \ |
3bcbcc3d | 245 | config/tc-cris.c \ |
1fe1f39c | 246 | config/tc-crx.c \ |
252b5132 RH |
247 | config/tc-d10v.c \ |
248 | config/tc-d30v.c \ | |
d172d4ba | 249 | config/tc-dlx.c \ |
a4835b42 | 250 | config/tc-fr30.c \ |
0ebb9a87 | 251 | config/tc-frv.c \ |
252b5132 RH |
252 | config/tc-h8300.c \ |
253 | config/tc-h8500.c \ | |
254 | config/tc-hppa.c \ | |
800eeca4 | 255 | config/tc-ia64.c \ |
5b93d8bb | 256 | config/tc-i370.c \ |
252b5132 RH |
257 | config/tc-i386.c \ |
258 | config/tc-i860.c \ | |
259 | config/tc-i960.c \ | |
a40cbfa3 | 260 | config/tc-ip2k.c \ |
252b5132 | 261 | config/tc-m32r.c \ |
60bcf0fa | 262 | config/tc-m68hc11.c \ |
252b5132 RH |
263 | config/tc-m68k.c \ |
264 | config/tc-m88k.c \ | |
265 | config/tc-mcore.c \ | |
266 | config/tc-mips.c \ | |
3c3bdf30 | 267 | config/tc-mmix.c \ |
252b5132 RH |
268 | config/tc-mn10200.c \ |
269 | config/tc-mn10300.c \ | |
2469cfa2 | 270 | config/tc-msp430.c \ |
252b5132 | 271 | config/tc-ns32k.c \ |
c7e40348 | 272 | config/tc-openrisc.c \ |
3b16e843 | 273 | config/tc-or32.c \ |
e135f41b | 274 | config/tc-pdp11.c \ |
041dd5a9 | 275 | config/tc-pj.c \ |
252b5132 | 276 | config/tc-ppc.c \ |
a85d7ed0 | 277 | config/tc-s390.c \ |
252b5132 | 278 | config/tc-sh.c \ |
324bfcf3 | 279 | config/tc-sh64.c \ |
252b5132 RH |
280 | config/tc-sparc.c \ |
281 | config/tc-tahoe.c \ | |
282 | config/tc-tic30.c \ | |
39bec121 | 283 | config/tc-tic54x.c \ |
252b5132 RH |
284 | config/tc-tic80.c \ |
285 | config/tc-vax.c \ | |
286 | config/tc-w65.c \ | |
287 | config/tc-v850.c \ | |
93fbbb04 | 288 | config/tc-xstormy16.c \ |
e0001a05 | 289 | config/tc-xtensa.c \ |
252b5132 RH |
290 | config/tc-z8k.c |
291 | ||
292 | TARGET_CPU_HFILES = \ | |
293 | config/tc-a29k.h \ | |
294 | config/tc-alpha.h \ | |
295 | config/tc-arc.h \ | |
296 | config/tc-arm.h \ | |
ec694b89 | 297 | config/tc-avr.h \ |
3bcbcc3d | 298 | config/tc-cris.h \ |
1fe1f39c | 299 | config/tc-crx.h \ |
252b5132 RH |
300 | config/tc-d10v.h \ |
301 | config/tc-d30v.h \ | |
d172d4ba | 302 | config/tc-dlx.h \ |
a4835b42 | 303 | config/tc-fr30.h \ |
0ebb9a87 | 304 | config/tc-frv.h \ |
252b5132 RH |
305 | config/tc-h8300.h \ |
306 | config/tc-h8500.h \ | |
307 | config/tc-hppa.h \ | |
800eeca4 | 308 | config/tc-ia64.h \ |
5b93d8bb | 309 | config/tc-i370.h \ |
252b5132 RH |
310 | config/tc-i386.h \ |
311 | config/tc-i860.h \ | |
312 | config/tc-i960.h \ | |
a40cbfa3 | 313 | config/tc-ip2k.h \ |
252b5132 | 314 | config/tc-m32r.h \ |
60bcf0fa | 315 | config/tc-m68hc11.h \ |
252b5132 RH |
316 | config/tc-m68k.h \ |
317 | config/tc-m88k.h \ | |
318 | config/tc-mcore.h \ | |
319 | config/tc-mips.h \ | |
3c3bdf30 | 320 | config/tc-mmix.h \ |
252b5132 RH |
321 | config/tc-mn10200.h \ |
322 | config/tc-mn10300.h \ | |
2469cfa2 | 323 | config/tc-msp430.h \ |
252b5132 | 324 | config/tc-ns32k.h \ |
c7e40348 | 325 | config/tc-openrisc.h \ |
3b16e843 | 326 | config/tc-or32.h \ |
e135f41b | 327 | config/tc-pdp11.h \ |
041dd5a9 | 328 | config/tc-pj.h \ |
252b5132 | 329 | config/tc-ppc.h \ |
a85d7ed0 | 330 | config/tc-s390.h \ |
252b5132 | 331 | config/tc-sh.h \ |
324bfcf3 | 332 | config/tc-sh64.h \ |
252b5132 RH |
333 | config/tc-sparc.h \ |
334 | config/tc-tahoe.h \ | |
335 | config/tc-tic30.h \ | |
39bec121 | 336 | config/tc-tic54x.h \ |
252b5132 RH |
337 | config/tc-tic80.h \ |
338 | config/tc-vax.h \ | |
339 | config/tc-w65.h \ | |
340 | config/tc-v850.h \ | |
93fbbb04 | 341 | config/tc-xstormy16.h \ |
e0001a05 | 342 | config/tc-xtensa.h \ |
252b5132 RH |
343 | config/tc-z8k.h |
344 | ||
345 | # OBJ files in config | |
346 | ||
347 | OBJ_FORMAT_CFILES = \ | |
348 | config/obj-aout.c \ | |
349 | config/obj-bout.c \ | |
350 | config/obj-coff.c \ | |
351 | config/obj-ecoff.c \ | |
352 | config/obj-elf.c \ | |
353 | config/obj-evax.c \ | |
354 | config/obj-hp300.c \ | |
355 | config/obj-ieee.c \ | |
356 | config/obj-som.c \ | |
357 | config/obj-vms.c | |
358 | ||
359 | OBJ_FORMAT_HFILES = \ | |
360 | config/obj-aout.h \ | |
361 | config/obj-bout.h \ | |
362 | config/obj-coff.h \ | |
363 | config/obj-ecoff.h \ | |
364 | config/obj-elf.h \ | |
365 | config/obj-evax.h \ | |
366 | config/obj-hp300.h \ | |
367 | config/obj-ieee.h \ | |
368 | config/obj-som.h \ | |
369 | config/obj-vms.h | |
370 | ||
371 | # Emulation header files in config | |
372 | ||
373 | TARG_ENV_HFILES = \ | |
374 | config/te-386bsd.h \ | |
c820d418 | 375 | config/te-armlinuxeabi.h \ |
252b5132 RH |
376 | config/te-aux.h \ |
377 | config/te-delta.h \ | |
378 | config/te-delt88.h \ | |
379 | config/te-dpx2.h \ | |
380 | config/te-dynix.h \ | |
a4835b42 | 381 | config/te-epoc-pe.h \ |
252b5132 RH |
382 | config/te-generic.h \ |
383 | config/te-go32.h \ | |
384 | config/te-hp300.h \ | |
385 | config/te-hppa.h \ | |
3438adb3 AM |
386 | config/te-hppa64.h \ |
387 | config/te-hppalinux64.h \ | |
252b5132 | 388 | config/te-i386aix.h \ |
7463c317 | 389 | config/te-ia64aix.h \ |
252b5132 RH |
390 | config/te-ic960.h \ |
391 | config/te-linux.h \ | |
392 | config/te-lnews.h \ | |
393 | config/te-lynx.h \ | |
394 | config/te-mach.h \ | |
395 | config/te-macos.h \ | |
252b5132 RH |
396 | config/te-nbsd.h \ |
397 | config/te-nbsd532.h \ | |
32137342 | 398 | config/te-netware.h \ |
252b5132 RH |
399 | config/te-pc532mach.h \ |
400 | config/te-pe.h \ | |
252b5132 RH |
401 | config/te-psos.h \ |
402 | config/te-riscix.h \ | |
403 | config/te-sparcaout.h \ | |
404 | config/te-sun3.h \ | |
405 | config/te-svr4.h \ | |
e5a52504 | 406 | config/te-symbian.h \ |
af9539e4 L |
407 | config/te-sysv32.h \ |
408 | config/te-tmips.h | |
252b5132 RH |
409 | |
410 | # Multi files in config | |
411 | ||
412 | MULTI_CFILES = \ | |
3bcbcc3d HPN |
413 | config/e-crisaout.c \ |
414 | config/e-criself.c \ | |
4c63da97 | 415 | config/e-i386aout.c \ |
252b5132 RH |
416 | config/e-i386coff.c \ |
417 | config/e-i386elf.c \ | |
418 | config/e-mipsecoff.c \ | |
419 | config/e-mipself.c | |
420 | ||
421 | CONFIG_OBJS = \ | |
422 | $(TARG_CPU_O) \ | |
423 | $(OBJ_FORMAT_O) \ | |
424 | $(ATOF_TARG_O) \ | |
425 | $(extra_objects) | |
426 | ||
427 | GENERIC_OBJS = \ | |
428 | app.o \ | |
429 | as.o \ | |
430 | atof-generic.o \ | |
431 | bignum-copy.o \ | |
432 | cond.o \ | |
433 | depend.o \ | |
fac0d250 | 434 | dwarf2dbg.o \ |
54cfded0 | 435 | dw2gencfi.o \ |
252b5132 RH |
436 | ehopt.o \ |
437 | expr.o \ | |
438 | flonum-konst.o \ | |
439 | flonum-copy.o \ | |
440 | flonum-mult.o \ | |
441 | frags.o \ | |
442 | hash.o \ | |
443 | input-file.o \ | |
444 | input-scrub.o \ | |
445 | literal.o \ | |
446 | messages.o \ | |
447 | output-file.o \ | |
448 | read.o \ | |
449 | subsegs.o \ | |
450 | symbols.o \ | |
451 | write.o \ | |
452 | listing.o \ | |
453 | ecoff.o \ | |
454 | stabs.o \ | |
455 | sb.o \ | |
456 | macro.o | |
457 | ||
458 | OBJS = $(CONFIG_OBJS) $(GENERIC_OBJS) | |
459 | ||
460 | POTFILES = $(MULTI_CFILES) $(TARGET_ENV_HFILES) $(OBJ_FORMAT_HFILES) \ | |
461 | $(OBJ_FORMAT_CFILES) $(TARGET_CPU_HFILES) $(TARGET_CPU_CFILES) \ | |
462 | $(HFILES) $(CFILES) $(GAS_CFILES) | |
463 | po/POTFILES.in: @MAINT@ Makefile | |
da64f3bf | 464 | for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \ |
252b5132 RH |
465 | && mv tmp $(srcdir)/po/POTFILES.in |
466 | ||
fea17916 NC |
467 | # Note: GASP is now deprecated and has been removed. It is still |
468 | # available in the CVS archive or older binutils releases if it is needed. | |
3f965e60 | 469 | noinst_PROGRAMS = as-new |
81afc846 ILT |
470 | noinst_SCRIPTS = $(GDBINIT) |
471 | EXTRA_SCRIPTS = .gdbinit | |
252b5132 RH |
472 | |
473 | $(srcdir)/make-gas.com: stamp-mk.com | |
474 | stamp-mk.com: vmsconf.sh Makefile | |
475 | sh $(srcdir)/vmsconf.sh $(GENERIC_OBJS) > new-make.com | |
476 | $(SHELL) $(srcdir)/../move-if-change new-make.com $(srcdir)/make-gas.com | |
477 | touch stamp-mk.com | |
478 | ||
c45021f2 NC |
479 | EXTRA_DIST = make-gas.com m68k-parse.c itbl-parse.c itbl-parse.h itbl-lex.c |
480 | diststuff: $(EXTRA_DIST) info | |
252b5132 RH |
481 | |
482 | DISTCLEANFILES = targ-cpu.h obj-format.h targ-env.h itbl-cpu.h cgen-desc.h | |
483 | ||
484 | # Now figure out from those variables how to compile and link. | |
485 | ||
486 | BASEDIR = $(srcdir)/.. | |
487 | BFDDIR = $(BASEDIR)/bfd | |
488 | INCDIR = $(BASEDIR)/include | |
489 | ||
490 | # This is the variable actually used when we compile. | |
491 | # Specify the directories to be searched for header files. | |
492 | # Both . and srcdir are used, in that order, | |
493 | # so that tm.h and config.h will be found in the compilation | |
494 | # subdirectory rather than in the source directory. | |
32118081 | 495 | INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(srcdir)/config -I$(INCDIR) -I$(srcdir)/.. -I$(BFDDIR) -I$(srcdir)/../intl -I../intl -DLOCALEDIR="\"$(datadir)/locale\"" |
252b5132 RH |
496 | |
497 | # This should be parallel to INCLUDES, but should replace $(srcdir) | |
498 | # with $${srcdir}, and should work in a subdirectory. This is used | |
499 | # when building dependencies, because the dependency building is done | |
500 | # in a subdirectory. | |
32118081 | 501 | DEP_INCLUDES = -D_GNU_SOURCE -I.. -I$${srcdir} -I../../bfd -I$${srcdir}/config -I$${srcdir}/../include -I$${srcdir}/.. -I$${srcdir}/../bfd -I$${srcdir}/../intl -I../../intl -DLOCALEDIR="\"$(datadir)/locale\"" |
252b5132 | 502 | |
3817f222 AM |
503 | DEP_FLAGS = -DBFD_ASSEMBLER -DOBJ_MAYBE_ELF \ |
504 | -I. -I.. -I$${srcdir} -I../../bfd $(DEP_INCLUDES) | |
505 | ||
252b5132 RH |
506 | # How to link with both our special library facilities |
507 | # and the system's installed libraries. | |
508 | ||
509 | GASLIBS = @OPCODES_LIB@ @BFDLIB@ ../libiberty/libiberty.a | |
510 | ||
511 | # Files to be copied away after each stage in building. | |
512 | STAGESTUFF = *.o $(noinst_PROGRAMS) | |
513 | ||
4001ad8c AM |
514 | BFDVER_H = @BFDVER_H@ |
515 | ||
252b5132 RH |
516 | $(OBJS): @ALL_OBJ_DEPS@ |
517 | ||
518 | as_new_SOURCES = $(GAS_CFILES) | |
519 | as_new_LDADD = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \ | |
39bec121 | 520 | $(extra_objects) $(GASLIBS) $(INTLLIBS) $(LIBM) |
252b5132 RH |
521 | as_new_DEPENDENCIES = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \ |
522 | $(extra_objects) $(GASLIBS) $(INTLDEPS) | |
523 | ||
524 | # Stuff that every object file depends upon. If anything is removed | |
525 | # from this list, remove it from dep-in.sed as well. | |
29589b0c AM |
526 | $(OBJS): $(INCDIR)/bin-bugs.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ |
527 | $(INCDIR)/progress.h $(INCDIR)/fopen-same.h \ | |
1581f8c9 AM |
528 | $(OBJ_FORMAT_H) $(TARG_CPU_H) $(TARG_ENV_H) \ |
529 | as.h asintl.h bignum.h bit_fix.h config.h emul.h expr.h flonum.h \ | |
530 | frags.h hash.h listing.h obj.h read.h symbols.h tc.h write.h | |
252b5132 | 531 | |
252b5132 RH |
532 | EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \ |
533 | echo $${rootme}/../expect/expect ; \ | |
534 | else echo expect ; fi` | |
535 | ||
536 | RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \ | |
537 | echo $${srcdir}/../dejagnu/runtest ; else echo runtest; \ | |
538 | fi` | |
539 | RUNTESTFLAGS= | |
540 | ||
541 | check-DEJAGNU: site.exp | |
542 | if [ -d testsuite ]; then \ | |
543 | true; \ | |
544 | else \ | |
545 | mkdir testsuite; \ | |
546 | fi | |
547 | rm -f testsuite/site.exp | |
548 | cp site.exp testsuite/site.exp | |
549 | rootme=`pwd`; export rootme; \ | |
550 | srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \ | |
551 | EXPECT=${EXPECT} ; export EXPECT ; \ | |
552 | if [ -f $(top_builddir)/../expect/expect ]; then \ | |
553 | TCL_LIBRARY=`cd $(top_srcdir)/../tcl/library && pwd`; \ | |
554 | export TCL_LIBRARY; \ | |
555 | fi; \ | |
556 | runtest=$(RUNTEST); \ | |
557 | cd testsuite; \ | |
558 | if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \ | |
559 | $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \ | |
560 | $(RUNTESTFLAGS); \ | |
561 | else echo "WARNING: could not find \`runtest'" 1>&2; :;\ | |
562 | fi | |
563 | ||
564 | # The implicit .c.o rule doesn't work for these, perhaps because of | |
565 | # the variables, or perhaps because the sources are not on vpath. | |
ad4d6ccf | 566 | $(TARG_CPU_O): $(TARG_CPU_C) |
252b5132 RH |
567 | $(COMPILE) -c $(TARG_CPU_C) |
568 | $(ATOF_TARG_O): $(ATOF_TARG_C) | |
569 | $(COMPILE) -c $(ATOF_TARG_C) | |
570 | ||
571 | # ecoff.c only has full dependencies when ECOFF_DEBUGGING is defined, | |
572 | # so the automatic dependency stuff doesn't work. | |
573 | ecoff.o : ecoff.c ecoff.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ | |
574 | $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/symconst.h \ | |
575 | $(INCDIR)/aout/stab_gnu.h | |
576 | ||
577 | # We need all these explicit rules for the multi stuff. Because of | |
578 | # these rules, we don't need one for OBJ_FORMAT_O. | |
579 | ||
580 | obj-aout.o : $(srcdir)/config/obj-aout.c | |
581 | $(COMPILE) -c $(srcdir)/config/obj-aout.c | |
582 | obj-bout.o : $(srcdir)/config/obj-bout.c | |
583 | $(COMPILE) -c $(srcdir)/config/obj-bout.c | |
584 | obj-coff.o: $(srcdir)/config/obj-coff.c | |
585 | $(COMPILE) -c $(srcdir)/config/obj-coff.c | |
586 | obj-ecoff.o : $(srcdir)/config/obj-ecoff.c | |
587 | $(COMPILE) -c $(srcdir)/config/obj-ecoff.c | |
588 | obj-elf.o : $(srcdir)/config/obj-elf.c | |
589 | $(COMPILE) -c $(srcdir)/config/obj-elf.c | |
590 | obj-evax.o : $(srcdir)/config/obj-evax.c | |
591 | $(COMPILE) -c $(srcdir)/config/obj-evax.c | |
592 | obj-hp300.o : $(srcdir)/config/obj-hp300.c | |
593 | $(COMPILE) -c $(srcdir)/config/obj-hp300.c | |
594 | obj-ieee.o : $(srcdir)/config/obj-ieee.c | |
595 | $(COMPILE) -c $(srcdir)/config/obj-ieee.c | |
596 | obj-multi.o : $(srcdir)/config/obj-multi.c | |
597 | $(COMPILE) -c $(srcdir)/config/obj-multi.c | |
598 | obj-som.o : $(srcdir)/config/obj-som.c | |
599 | $(COMPILE) -c $(srcdir)/config/obj-som.c | |
600 | obj-vms.o : $(srcdir)/config/obj-vms.c | |
601 | $(COMPILE) -c $(srcdir)/config/obj-vms.c | |
602 | ||
603 | e-mipself.o : $(srcdir)/config/e-mipself.c | |
604 | $(COMPILE) -c $(srcdir)/config/e-mipself.c | |
605 | e-mipsecoff.o : $(srcdir)/config/e-mipsecoff.c | |
606 | $(COMPILE) -c $(srcdir)/config/e-mipsecoff.c | |
4c63da97 AM |
607 | e-i386aout.o: $(srcdir)/config/e-i386aout.c |
608 | $(COMPILE) -c $(srcdir)/config/e-i386aout.c | |
252b5132 RH |
609 | e-i386coff.o: $(srcdir)/config/e-i386coff.c |
610 | $(COMPILE) -c $(srcdir)/config/e-i386coff.c | |
611 | e-i386elf.o: $(srcdir)/config/e-i386elf.c | |
612 | $(COMPILE) -c $(srcdir)/config/e-i386elf.c | |
3bcbcc3d HPN |
613 | e-crisaout.o: $(srcdir)/config/e-crisaout.c |
614 | $(COMPILE) -c $(srcdir)/config/e-crisaout.c | |
615 | e-criself.o: $(srcdir)/config/e-criself.c | |
616 | $(COMPILE) -c $(srcdir)/config/e-criself.c | |
252b5132 | 617 | |
e0001a05 NC |
618 | xtensa-relax.o: $(srcdir)/config/xtensa-relax.c |
619 | $(COMPILE) -c $(srcdir)/config/xtensa-relax.c | |
e0001a05 | 620 | |
252b5132 RH |
621 | # The m68k operand parser. |
622 | ||
623 | EXTRA_as_new_SOURCES = config/m68k-parse.y | |
624 | ||
625 | # If m68k-parse.y is in a different directory, then ylwrap will use an | |
626 | # absolute path when it invokes yacc, which will cause yacc to put the | |
627 | # absolute path into the generated file. That's a pain when it comes | |
628 | # to generating snapshots, because it introduces spurious diffs. | |
629 | # Since when we make the snapshots $(srcdir) = ".", we check for that | |
630 | # case and handle it differently. This means that anybody who | |
631 | # configures with $(srcdir) = "." will have to set their path in the | |
632 | # debugger if they want to debug m68k-parse.y. This is bad, but on | |
633 | # the other hand it's good that people who use the prebuilt | |
634 | # m68k-parse.c don't get a spurious absolute path. | |
635 | m68k-parse.c: $(srcdir)/config/m68k-parse.y | |
636 | f=$(srcdir)/config/m68k-parse.y; \ | |
637 | if [ $$f = "./config/m68k-parse.y" ]; then \ | |
638 | ln -s config/m68k-parse.y . > /dev/null 2>/dev/null || \ | |
639 | ln config/m68k-parse.y . > /dev/null 2>/dev/null || \ | |
640 | cp config/m68k-parse.y . >/dev/null 2>/dev/null; \ | |
641 | f=m68k-parse.y; \ | |
642 | else true; fi; \ | |
643 | $(SHELL) $(YLWRAP) "$(YACC)" $$f y.tab.c m68k-parse.c --; \ | |
644 | if [ $$f = "m68k-parse.y" ]; then \ | |
645 | rm -f m68k-parse.y; \ | |
646 | else true; fi | |
647 | m68k-parse.o: m68k-parse.c $(srcdir)/config/m68k-parse.h | |
648 | ||
649 | # Don't let the .y.h rule clobber m68k-parse.h. | |
650 | m68k-parse.h: ; @true | |
651 | $(srcdir)/config/m68k-parse.h: ; @true | |
652 | ||
653 | # The instruction table specification lexical analyzer and parser. | |
654 | ||
655 | itbl-lex.c: $(srcdir)/itbl-lex.l | |
656 | itbl-lex.o: itbl-lex.c itbl-parse.h | |
657 | ||
658 | itbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h | |
659 | ||
660 | itbl-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h | |
661 | ||
662 | itbl-parse.c itbl-parse.h: $(srcdir)/itbl-parse.y | |
663 | $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/itbl-parse.y y.tab.c itbl-parse.c y.tab.h itbl-parse.h -- -d | |
664 | ||
665 | # stand-alone itbl assembler & disassembler | |
666 | ||
fea17916 | 667 | EXTRA_PROGRAMS = itbl-test |
252b5132 | 668 | itbl_test_SOURCES = itbl-parse.y itbl-lex.l |
46eec08e | 669 | itbl_test_LDADD = itbl-tops.o itbl-test.o $(GASLIBS) @LEXLIB@ |
252b5132 | 670 | |
46eec08e ILT |
671 | itbl-tops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h |
672 | $(COMPILE) -o itbl-tops.o -DSTAND_ALONE -c $(srcdir)/itbl-ops.c | |
252b5132 RH |
673 | |
674 | itbl-test.o: $(srcdir)/testsuite/gas/all/itbl-test.c $(srcdir)/itbl-ops.h | |
675 | $(COMPILE) -c -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c | |
676 | ||
677 | # CGEN interface. | |
678 | ||
679 | CGEN_CPU_PREFIX = @cgen_cpu_prefix@ | |
680 | ||
681 | cgen.o: cgen.c cgen.h cgen-desc.h subsegs.h \ | |
682 | $(INCDIR)/obstack.h $(INCDIR)/opcode/cgen.h \ | |
683 | $(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-desc.h \ | |
684 | $(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-opc.h | |
685 | ||
686 | # Remake the info files. | |
687 | ||
688 | MOSTLYCLEANFILES = $(STAGESTUFF) core stamp-mk.com \ | |
689 | testsuite/*.o testsuite/*.out testsuite/gas.log testsuite/gas.sum \ | |
690 | testsuite/site.exp site.bak site.exp stage stage1 stage2 | |
691 | ||
ad4d6ccf | 692 | CLEANFILES = dep.sed DEPTC DEPTCA DEPOBJ DEPOBJA DEP2 DEP2A DEP1 DEPA DEP DEPDIR |
252b5132 RH |
693 | |
694 | .PHONY: install-exec-local install-data-local | |
695 | .PHONY: install-exec-bindir install-exec-tooldir | |
696 | ||
697 | install-exec-local: install-exec-bindir @install_tooldir@ | |
698 | ||
699 | install-exec-bindir: $(noinst_PROGRAMS) | |
d3d8a9ee | 700 | $(mkinstalldirs) $(DESTDIR)$(bindir) |
252b5132 RH |
701 | @list='$(noinst_PROGRAMS)'; for p in $$list; do \ |
702 | if test -f $$p; then \ | |
703 | echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ | |
d3d8a9ee | 704 | $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ |
252b5132 RH |
705 | else :; fi; \ |
706 | done | |
707 | ||
f8c827e9 | 708 | install-exec-tooldir: install-exec-bindir $(noinst_PROGRAMS) |
d3d8a9ee | 709 | $(mkinstalldirs) $(DESTDIR)$(tooldir)/bin |
252b5132 RH |
710 | n=`echo as | sed '$(transform)'`; \ |
711 | if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/as$(EXEEXT)" ]; then \ | |
d3d8a9ee NC |
712 | rm -f $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \ |
713 | ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT) >/dev/null 2>/dev/null \ | |
714 | || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) as-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \ | |
252b5132 RH |
715 | else \ |
716 | true ; \ | |
717 | fi | |
718 | ||
719 | # These exist for maintenance purposes. | |
720 | ||
721 | .PHONY: bootstrap bootstrap2 bootstrap3 stage1 stage2 stage3 comparison | |
722 | ||
723 | bootstrap: as-new | |
724 | $(MAKE) stage1 | |
725 | rm -f stage && ln -s stage1 stage | |
726 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS) | |
727 | $(MAKE) stage2 | |
728 | rm -f stage && ln -s stage2 stage | |
729 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS) | |
730 | $(MAKE) comparison against=stage2 | |
731 | ||
732 | bootstrap2: | |
733 | rm -f stage && ln -s stage1 stage | |
734 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS) | |
735 | $(MAKE) stage2 | |
736 | rm -f stage && ln -s stage2 stage | |
737 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS) | |
738 | $(MAKE) comparison against=stage2 | |
739 | ||
740 | bootstrap3: | |
741 | rm -f stage && ln -s stage2 stage | |
742 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS) | |
743 | $(MAKE) comparison against=stage2 | |
744 | ||
745 | # Copy the object files from a particular stage into a subdirectory. | |
746 | stage1: | |
747 | -mkdir stage1 | |
748 | -mv $(STAGESTUFF) stage1 | |
749 | if [ -f stage1/as-new$(EXEEXT) -a ! -f stage1/as$(EXEEXT) ] ; then (cd stage1 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi | |
750 | ||
751 | stage2: | |
752 | -mkdir stage2 | |
753 | -mv $(STAGESTUFF) stage2 | |
754 | if [ -f stage2/as-new$(EXEEXT) -a ! -f stage2/as$(EXEEXT) ] ; then (cd stage2 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi | |
755 | ||
756 | stage3: | |
757 | -mkdir stage3 | |
758 | -mv $(STAGESTUFF) stage3 | |
759 | if [ -f stage3/as-new$(EXEEXT) -a ! -f stage3/as$(EXEEXT) ] ; then (cd stage3 ; ln -s as-new as$(EXEEXT)) ; fi | |
760 | ||
761 | against=stage2 | |
762 | ||
763 | # This rule is derived from corresponding code in the Makefile.in for gcc. | |
764 | # The "tail +16c" is to bypass headers which may include timestamps or | |
765 | # temporary assembly file names. | |
766 | comparison: | |
767 | x=0 ; \ | |
768 | for file in *.o ; do \ | |
769 | tail +16c ./$$file > tmp-foo1; \ | |
770 | if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \ | |
771 | if cmp tmp-foo1 tmp-foo2 ; then \ | |
772 | true ; \ | |
773 | else \ | |
774 | echo $$file differs ; \ | |
775 | x=1 ; \ | |
776 | fi ; \ | |
777 | else true; fi ; \ | |
778 | done ; \ | |
779 | exit $$x | |
780 | -rm -f tmp-foo* | |
781 | ||
782 | .PHONY: de-stage1 de-stage2 de-stage3 | |
783 | ||
784 | de-stage1: | |
785 | - (cd stage1 ; rm -f as$(EXEEXT) ; mv -f * ..) | |
786 | - rmdir stage1 | |
787 | ||
788 | de-stage2: | |
789 | - (cd stage2 ; rm -f as$(EXEEXT) ; mv -f * ..) | |
790 | - rmdir stage2 | |
791 | ||
792 | de-stage3: | |
793 | - (cd stage3 ; rm -f as$(EXEEXT) ; mv -f * ..) | |
794 | - rmdir stage3 | |
795 | ||
252b5132 RH |
796 | DEP_FILE_DEPS = $(CFILES) $(HFILES) $(TARGET_CPU_CFILES) \ |
797 | $(TARGET_CPU_HFILES) $(OBJ_FORMAT_CFILES) $(OBJ_FORMAT_HFILES) | |
798 | ||
14ee9f48 | 799 | CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/configure.in $(srcdir)/configure.tgt |
403487ec | 800 | |
ad4d6ccf AM |
801 | # Automatic dependency computation. This is a real pain, because the |
802 | # dependencies change based on target_cpu_type and obj_format. | |
803 | # Just to make things even more complicated, automake separates the | |
804 | # dependency variable assignments from the dependency rules, and tacks | |
805 | # on a .NOEXPORT at the end of Makefile.in. | |
806 | ||
04ad1543 | 807 | DEP: dep.sed $(DEP_FILE_DEPS) DEPTC DEPOBJ DEP2 |
ad4d6ccf | 808 | rm -f DEP1 # delete because we use $? in DEP1 rule |
252b5132 | 809 | srcdir=`cd $(srcdir); pwd`; \ |
41b49281 | 810 | $(MAKE) MKDEP="$(MKDEP)" srcdir="$${srcdir}" VPATH="$${srcdir}" DEP1 |
04ad1543 | 811 | rm -rf DEPDIR |
ad4d6ccf | 812 | echo 'AMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.' > DEPA |
04ad1543 ILT |
813 | sed -f dep.sed < DEPTC >> DEPA |
814 | sed -f dep.sed < DEPOBJ >> DEPA | |
815 | sed -f dep.sed < DEP2 >> DEPA | |
ad4d6ccf AM |
816 | echo 'BMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.' >> DEPA |
817 | echo '#MKDEP DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.' >> DEPA | |
818 | sed -f dep.sed < DEP1 >> DEPA | |
04ad1543 ILT |
819 | echo '$$(OBJS): $$(DEP_@target''_cpu_type@_@obj''_format@)' >> DEPA |
820 | echo '$$(TARG_CPU_O): $$(DEPTC_@target''_cpu_type@_@obj''_format@)' >> DEPA | |
821 | echo '$$(OBJ_FORMAT_O): $$(DEPOBJ_@target''_cpu_type@_@obj''_format@)' >> DEPA | |
ad4d6ccf | 822 | echo '#MKDEP DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.' >> DEPA |
1581f8c9 AM |
823 | if grep ' /' DEPA > /dev/null 2> /dev/null; then \ |
824 | echo 'make DEP failed!'; exit 1; \ | |
825 | else \ | |
826 | mv -f DEPA $@; \ | |
827 | fi | |
252b5132 | 828 | |
04ad1543 ILT |
829 | DEP1: $(CFILES) $(MULTI_CFILES) |
830 | if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi | |
252b5132 | 831 | srcdir=`cd $(srcdir); pwd`; \ |
04ad1543 | 832 | cd DEPDIR; \ |
252b5132 RH |
833 | echo '' > targ-cpu.h; \ |
834 | echo '' > obj-format.h; \ | |
835 | echo '' > targ-env.h; \ | |
836 | echo '' > itbl-cpu.h; \ | |
6104f0a0 | 837 | echo '' > itbl-parse.h; \ |
3817f222 | 838 | $(MKDEP) $(DEP_FLAGS) $? > DEP |
41b49281 | 839 | mv -f DEPDIR/DEP $@ |
252b5132 RH |
840 | |
841 | # Work out the special dependencies for the tc-*.c files. | |
04ad1543 ILT |
842 | DEPTC: $(TARGET_CPU_CFILES) |
843 | rm -f DEPTCA | |
844 | if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi | |
252b5132 | 845 | srcdir=`cd $(srcdir); pwd`; \ |
04ad1543 | 846 | cd DEPDIR; \ |
252b5132 RH |
847 | for c in $(CPU_TYPES); do \ |
848 | for o in $(OBJ_FORMATS); do \ | |
849 | $(CPU_OBJ_VALID) \ | |
850 | if [ x$${valid} = xyes ]; then \ | |
851 | echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \ | |
852 | echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \ | |
853 | echo '#include "te-generic.h"' > targ-env.h; \ | |
854 | echo '' > itbl-cpu.h; \ | |
6104f0a0 | 855 | echo '' > itbl-parse.h; \ |
252b5132 RH |
856 | echo '#include "opcodes/'"$${c}"'-desc.h"' > cgen-desc.h; \ |
857 | rm -f dummy.c; \ | |
858 | cp $${srcdir}/config/tc-$${c}.c dummy.c; \ | |
3817f222 | 859 | $(MKDEP) $(DEP_FLAGS) dummy.c | \ |
41b49281 | 860 | sed -e "s/dummy.o: dummy.c/DEPTC_$${c}_$${o} =/" >> ../DEPTCA; \ |
252b5132 RH |
861 | rm -f dummy.c; \ |
862 | else true; fi; \ | |
863 | done; \ | |
864 | done | |
04ad1543 ILT |
865 | echo 'DEPTC_hppa_som = $$(srcdir)/config/tc-hppa.h subsegs.h \' >> DEPTCA |
866 | echo ' $$(INCDIR)/obstack.h $$(BFDDIR)/libhppa.h \' >> DEPTCA | |
867 | echo ' $$(INCDIR)/opcode/hppa.h $$(BFDDIR)/som.h' >> DEPTCA | |
16adf844 | 868 | for c in $(MULTI_CPU_TYPES); do \ |
ad4d6ccf | 869 | echo "DEPTC_$${c}"'_multi = \' >> DEPTCA; \ |
16adf844 AM |
870 | for o in $(OBJ_FORMATS); do \ |
871 | $(MULTI_CPU_OBJ_VALID) \ | |
252b5132 | 872 | if [ x$${valid} = xyes ]; then \ |
16adf844 | 873 | echo '$$(DEPTC_'"$${c}_$${o}"') \' >> DEPTCA; \ |
252b5132 | 874 | else true; fi; \ |
16adf844 AM |
875 | done; \ |
876 | echo '' >> DEPTCA; \ | |
252b5132 | 877 | done |
04ad1543 | 878 | mv -f DEPTCA DEPTC |
252b5132 RH |
879 | |
880 | # Work out the special dependencies for the obj-*.c files. | |
04ad1543 ILT |
881 | DEPOBJ: $(OBJ_FORMAT_CFILES) |
882 | rm -f DEPOBJA | |
883 | if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi | |
252b5132 | 884 | srcdir=`cd $(srcdir); pwd`; \ |
04ad1543 | 885 | cd DEPDIR; \ |
252b5132 RH |
886 | for c in $(CPU_TYPES); do \ |
887 | for o in $(OBJ_FORMATS); do \ | |
888 | $(CPU_OBJ_VALID) \ | |
889 | if [ x$${valid} = xyes ]; then \ | |
890 | echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \ | |
891 | echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \ | |
892 | echo '#include "te-generic.h"' > targ-env.h; \ | |
893 | echo '' > itbl-cpu.h; \ | |
6104f0a0 | 894 | echo '' > itbl-parse.h; \ |
252b5132 RH |
895 | rm -f dummy.c; \ |
896 | cp $${srcdir}/config/obj-$${o}.c dummy.c; \ | |
3817f222 | 897 | $(MKDEP) $(DEP_FLAGS) dummy.c | \ |
41b49281 | 898 | sed -e "s/dummy.o: dummy.c/DEPOBJ_$${c}_$${o} =/" >> ../DEPOBJA; \ |
252b5132 RH |
899 | rm -f dummy.c; \ |
900 | else true; fi; \ | |
901 | done; \ | |
902 | done | |
04ad1543 ILT |
903 | echo 'DEPOBJ_hppa_som = $$(srcdir)/config/obj-som.h subsegs.h \' >> DEPOBJA |
904 | echo ' $$(INCDIR)/obstack.h $$(BFDDIR)/libhppa.h \' >> DEPOBJA | |
905 | echo ' $$(BFDDIR)/som.h $$(INCDIR)/aout/stab_gnu.h \' >> DEPOBJA | |
906 | echo ' $$(INCDIR)/aout/stab.def' >> DEPOBJA | |
16adf844 | 907 | for c in $(MULTI_CPU_TYPES); do \ |
ad4d6ccf | 908 | echo "DEPOBJ_$${c}"'_multi = \' >> DEPOBJA; \ |
16adf844 AM |
909 | for o in $(OBJ_FORMATS); do \ |
910 | $(MULTI_CPU_OBJ_VALID) \ | |
252b5132 | 911 | if [ x$${valid} = xyes ]; then \ |
16adf844 | 912 | echo '$$(DEPOBJ_'"$${c}_$${o}"') \' >> DEPOBJA; \ |
252b5132 | 913 | else true; fi; \ |
16adf844 AM |
914 | done; \ |
915 | echo '' >> DEPOBJA; \ | |
252b5132 | 916 | done |
04ad1543 | 917 | mv -f DEPOBJA DEPOBJ |
252b5132 RH |
918 | |
919 | # Work out the dependencies for each CPU/OBJ combination. | |
920 | # Note that SOM is a special case, because it only works native. | |
04ad1543 | 921 | DEP2: $(TARGET_CPU_HFILES) $(OBJ_FORMAT_HFILES) |
ad4d6ccf | 922 | rm -f DEP2A |
04ad1543 | 923 | if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi |
252b5132 | 924 | srcdir=`cd $(srcdir); pwd`; \ |
04ad1543 | 925 | cd DEPDIR; \ |
252b5132 RH |
926 | for c in $(CPU_TYPES); do \ |
927 | for o in $(OBJ_FORMATS); do \ | |
928 | $(CPU_OBJ_VALID) \ | |
929 | if [ x$${valid} = xyes ]; then \ | |
930 | echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \ | |
931 | echo '#include "obj-'"$${o}"'.h"' > dummy.c; \ | |
3817f222 | 932 | $(MKDEP) $(DEP_FLAGS) dummy.c | \ |
ad4d6ccf | 933 | sed -e "s/dummy.o: dummy.c/DEP_$${c}_$${o} =/" >> ../DEP2A; \ |
252b5132 RH |
934 | else true; fi; \ |
935 | done; \ | |
936 | done | |
ad4d6ccf | 937 | echo 'DEP_hppa_som = $$(BFDDIR)/som.h' >> DEP2A |
16adf844 | 938 | for c in $(MULTI_CPU_TYPES); do \ |
ad4d6ccf | 939 | echo "DEP_$${c}"'_multi = \' >> DEP2A; \ |
16adf844 AM |
940 | for o in $(OBJ_FORMATS); do \ |
941 | $(MULTI_CPU_OBJ_VALID) \ | |
252b5132 | 942 | if [ x$${valid} = xyes ]; then \ |
ad4d6ccf | 943 | echo '$$(DEP_'"$${c}_$${o}"') \' >> DEP2A; \ |
252b5132 | 944 | else true; fi; \ |
16adf844 | 945 | done; \ |
ad4d6ccf | 946 | echo '' >> DEP2A; \ |
252b5132 | 947 | done |
ad4d6ccf | 948 | mv -f DEP2A DEP2 |
252b5132 RH |
949 | |
950 | dep.sed: dep-in.sed config.status | |
951 | srcdir=`cd $(srcdir); pwd`; \ | |
952 | sed <$(srcdir)/dep-in.sed >dep.sed \ | |
953 | -e "s!@INCDIR@!$${srcdir}/../include!" \ | |
954 | -e "s!@BFDDIR@!$${srcdir}/../bfd!" \ | |
8e42bcb6 AM |
955 | -e "s!@SRCDIR@!$${srcdir}!" \ |
956 | -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/gas,,`'!' | |
252b5132 | 957 | |
04ad1543 | 958 | dep: DEP |
ad4d6ccf AM |
959 | sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \ |
960 | < Makefile > tmp-Makefile | |
04ad1543 | 961 | cat DEP >> tmp-Makefile |
252b5132 RH |
962 | $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile |
963 | ||
04ad1543 | 964 | dep-in: DEP |
ad4d6ccf AM |
965 | sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \ |
966 | < $(srcdir)/Makefile.in > tmp-Makefile.in | |
04ad1543 | 967 | cat DEP >> tmp-Makefile.in |
252b5132 RH |
968 | $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in |
969 | ||
04ad1543 | 970 | dep-am: DEP |
ad4d6ccf AM |
971 | sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \ |
972 | < $(srcdir)/Makefile.am > tmp-Makefile.am | |
04ad1543 | 973 | cat DEP >> tmp-Makefile.am |
252b5132 RH |
974 | $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am |
975 | ||
ad4d6ccf AM |
976 | # HEED THE MKDEP WARNINGS. |
977 | # ANYTHING CHANGED OR ADDED BETWEEN THE WARNING LINES MAY GO AWAY. | |
252b5132 RH |
978 | .PHONY: dep dep-in dep-am |
979 | ||
ad4d6ccf | 980 | AMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW. |
403487ec AM |
981 | DEPTC_a29k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
982 | $(srcdir)/config/tc-a29k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
983 | $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/a29k.h | |
984 | DEPTC_a29k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
985 | $(srcdir)/config/tc-a29k.h $(INCDIR)/coff/internal.h \ | |
986 | $(INCDIR)/coff/a29k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
987 | $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/a29k.h | |
988 | DEPTC_a29k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
989 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
990 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h \ | |
991 | $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/a29k.h | |
992 | DEPTC_alpha_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
993 | $(srcdir)/config/tc-alpha.h $(INCDIR)/coff/internal.h \ | |
994 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \ | |
995 | struc-symbol.h ecoff.h $(INCDIR)/opcode/alpha.h $(INCDIR)/safe-ctype.h \ | |
996 | $(srcdir)/config/atof-vax.c | |
997 | DEPTC_alpha_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \ | |
998 | $(srcdir)/config/tc-alpha.h ecoff.h $(INCDIR)/coff/sym.h \ | |
999 | $(INCDIR)/coff/ecoff.h subsegs.h $(INCDIR)/obstack.h \ | |
1000 | struc-symbol.h $(INCDIR)/opcode/alpha.h $(INCDIR)/safe-ctype.h \ | |
528a2d4a | 1001 | $(srcdir)/config/atof-vax.c |
403487ec AM |
1002 | DEPTC_alpha_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1003 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1004 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h \ | |
01580992 | 1005 | subsegs.h $(INCDIR)/obstack.h struc-symbol.h ecoff.h \ |
403487ec AM |
1006 | $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h $(INCDIR)/opcode/alpha.h \ |
1007 | $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \ | |
795bb480 AM |
1008 | dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/safe-ctype.h \ |
1009 | $(srcdir)/config/atof-vax.c | |
403487ec AM |
1010 | DEPTC_alpha_evax = $(INCDIR)/symcat.h $(srcdir)/config/obj-evax.h \ |
1011 | $(srcdir)/config/tc-alpha.h subsegs.h $(INCDIR)/obstack.h \ | |
1012 | struc-symbol.h ecoff.h $(INCDIR)/opcode/alpha.h $(INCDIR)/safe-ctype.h \ | |
1013 | $(srcdir)/config/atof-vax.c | |
1014 | DEPTC_arc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1015 | $(srcdir)/config/tc-arc.h $(INCDIR)/coff/internal.h \ | |
1016 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h struc-symbol.h \ | |
1017 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
528a2d4a HPN |
1018 | $(INCDIR)/opcode/arc.h $(srcdir)/../opcodes/arc-ext.h \ |
1019 | $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h | |
403487ec AM |
1020 | DEPTC_arc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1021 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1022 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h \ | |
1023 | struc-symbol.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
528a2d4a HPN |
1024 | $(INCDIR)/opcode/arc.h $(srcdir)/../opcodes/arc-ext.h \ |
1025 | $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h | |
403487ec AM |
1026 | DEPTC_arm_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1027 | $(srcdir)/config/tc-arm.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
8ea2b00f AM |
1028 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
1029 | $(INCDIR)/opcode/arm.h | |
403487ec AM |
1030 | DEPTC_arm_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1031 | $(srcdir)/config/tc-arm.h $(INCDIR)/coff/internal.h \ | |
1032 | $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1033 | $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \ | |
f263249b | 1034 | $(INCDIR)/obstack.h $(INCDIR)/opcode/arm.h |
403487ec AM |
1035 | DEPTC_arm_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1036 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1037 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h \ | |
1038 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
8ea2b00f | 1039 | $(INCDIR)/opcode/arm.h $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h \ |
a394c00f | 1040 | dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h |
403487ec AM |
1041 | DEPTC_avr_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1042 | $(srcdir)/config/tc-avr.h $(INCDIR)/coff/internal.h \ | |
528a2d4a | 1043 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ |
403487ec AM |
1044 | subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/avr.h |
1045 | DEPTC_avr_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1046 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1047 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-avr.h \ | |
528a2d4a HPN |
1048 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
1049 | $(INCDIR)/opcode/avr.h | |
403487ec AM |
1050 | DEPTC_cris_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1051 | $(srcdir)/config/tc-cris.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
528a2d4a | 1052 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
403487ec AM |
1053 | $(INCDIR)/opcode/cris.h dwarf2dbg.h |
1054 | DEPTC_cris_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1055 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1056 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h \ | |
1057 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
1058 | $(INCDIR)/opcode/cris.h dwarf2dbg.h | |
8ea2b00f AM |
1059 | DEPTC_crx_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1060 | $(srcdir)/config/tc-crx.h $(INCDIR)/coff/internal.h \ | |
1061 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ | |
1062 | dwarf2dbg.h $(INCDIR)/opcode/crx.h $(INCDIR)/elf/crx.h \ | |
1063 | $(INCDIR)/elf/reloc-macros.h | |
1fe1f39c NC |
1064 | DEPTC_crx_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1065 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1066 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-crx.h \ | |
8ea2b00f AM |
1067 | $(INCDIR)/safe-ctype.h dwarf2dbg.h $(INCDIR)/opcode/crx.h \ |
1068 | $(INCDIR)/elf/crx.h $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1069 | DEPTC_d10v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1070 | $(srcdir)/config/tc-d10v.h $(INCDIR)/coff/internal.h \ | |
1071 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ | |
528a2d4a HPN |
1072 | subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/d10v.h \ |
1073 | $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1074 | DEPTC_d10v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1075 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1076 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h \ | |
528a2d4a | 1077 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
403487ec AM |
1078 | $(INCDIR)/opcode/d10v.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h |
1079 | DEPTC_d30v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1080 | $(srcdir)/config/tc-d30v.h $(INCDIR)/coff/internal.h \ | |
1081 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ | |
528a2d4a | 1082 | subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/d30v.h |
403487ec AM |
1083 | DEPTC_d30v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1084 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1085 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h \ | |
528a2d4a | 1086 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
403487ec | 1087 | $(INCDIR)/opcode/d30v.h |
194b5210 AM |
1088 | DEPTC_dlx_coff = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \ |
1089 | $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-dlx.h \ | |
1090 | $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \ | |
d172d4ba | 1091 | $(INCDIR)/opcode/dlx.h |
194b5210 AM |
1092 | DEPTC_dlx_elf = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \ |
1093 | $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \ | |
1094 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
1095 | $(srcdir)/config/tc-dlx.h $(INCDIR)/opcode/dlx.h | |
403487ec AM |
1096 | DEPTC_fr30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1097 | $(srcdir)/config/tc-fr30.h $(INCDIR)/coff/internal.h \ | |
1098 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ | |
1099 | subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/fr30-desc.h \ | |
45f85b08 L |
1100 | $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/fr30-opc.h \ |
1101 | cgen.h | |
403487ec AM |
1102 | DEPTC_fr30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1103 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1104 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h \ | |
1105 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
1106 | $(srcdir)/../opcodes/fr30-desc.h $(INCDIR)/opcode/cgen.h \ | |
1107 | $(srcdir)/../opcodes/fr30-opc.h cgen.h | |
0ebb9a87 DB |
1108 | DEPTC_frv_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1109 | $(srcdir)/config/tc-frv.h $(INCDIR)/coff/internal.h \ | |
87ccc1b0 NC |
1110 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \ |
1111 | $(srcdir)/../opcodes/frv-desc.h $(INCDIR)/opcode/cgen.h \ | |
1112 | $(srcdir)/../opcodes/frv-opc.h cgen.h $(BFDDIR)/libbfd.h \ | |
1113 | $(INCDIR)/elf/common.h $(INCDIR)/elf/frv.h $(INCDIR)/elf/reloc-macros.h | |
0ebb9a87 DB |
1114 | DEPTC_frv_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1115 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1116 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-frv.h \ | |
da64f3bf | 1117 | subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/frv-desc.h \ |
ce4f7385 AM |
1118 | $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/frv-opc.h \ |
1119 | cgen.h $(BFDDIR)/libbfd.h $(INCDIR)/elf/frv.h $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1120 | DEPTC_h8300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1121 | $(srcdir)/config/tc-h8300.h $(INCDIR)/coff/internal.h \ | |
1122 | $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
54cfded0 AM |
1123 | $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h \ |
1124 | $(INCDIR)/opcode/h8300.h $(INCDIR)/safe-ctype.h | |
403487ec AM |
1125 | DEPTC_h8300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1126 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1127 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h \ | |
54cfded0 AM |
1128 | subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h $(INCDIR)/opcode/h8300.h \ |
1129 | $(INCDIR)/safe-ctype.h $(INCDIR)/elf/h8.h $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1130 | DEPTC_h8500_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1131 | $(srcdir)/config/tc-h8500.h $(INCDIR)/coff/internal.h \ | |
1132 | $(INCDIR)/coff/h8500.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1133 | $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/h8500-opc.h \ | |
1134 | $(INCDIR)/safe-ctype.h | |
1135 | DEPTC_h8500_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1136 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1137 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h \ | |
1138 | subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/h8500-opc.h \ | |
528a2d4a | 1139 | $(INCDIR)/safe-ctype.h |
403487ec AM |
1140 | DEPTC_hppa_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1141 | $(srcdir)/config/tc-hppa.h $(INCDIR)/coff/internal.h \ | |
1142 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ | |
1143 | subsegs.h $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h | |
1144 | DEPTC_hppa_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1145 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1146 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h \ | |
1147 | $(BFDDIR)/elf32-hppa.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \ | |
1148 | $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \ | |
1149 | subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/hppa.h \ | |
1150 | dwarf2dbg.h | |
1151 | DEPTC_ia64_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
8e42bcb6 AM |
1152 | $(srcdir)/config/tc-ia64.h $(INCDIR)/opcode/ia64.h \ |
1153 | $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \ | |
403487ec AM |
1154 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ |
1155 | dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h | |
1156 | DEPTC_ia64_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1157 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1158 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ia64.h \ | |
8e42bcb6 | 1159 | $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h \ |
403487ec AM |
1160 | $(INCDIR)/safe-ctype.h dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h |
1161 | DEPTC_i370_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1162 | $(srcdir)/config/tc-i370.h $(INCDIR)/coff/internal.h \ | |
1163 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ | |
1164 | subsegs.h $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/opcode/i370.h | |
1165 | DEPTC_i370_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1166 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1167 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h \ | |
528a2d4a | 1168 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
6539b54b AM |
1169 | struc-symbol.h $(INCDIR)/opcode/i370.h $(INCDIR)/elf/i370.h \ |
1170 | $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1171 | DEPTC_i386_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1172 | $(srcdir)/config/tc-i386.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
528a2d4a | 1173 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
3c55da70 AM |
1174 | dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/i386.h \ |
1175 | $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1176 | DEPTC_i386_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1177 | $(srcdir)/config/tc-i386.h $(INCDIR)/coff/internal.h \ | |
1178 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1179 | $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \ | |
54cfded0 | 1180 | $(INCDIR)/obstack.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \ |
3c55da70 | 1181 | $(INCDIR)/opcode/i386.h $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/reloc-macros.h |
403487ec AM |
1182 | DEPTC_i386_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1183 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1184 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h \ | |
528a2d4a | 1185 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
3c55da70 AM |
1186 | dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/i386.h \ |
1187 | $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1188 | DEPTC_i860_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1189 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1190 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h \ | |
528a2d4a | 1191 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
403487ec AM |
1192 | $(INCDIR)/opcode/i860.h $(INCDIR)/elf/i860.h $(INCDIR)/elf/reloc-macros.h |
1193 | DEPTC_i960_bout = $(INCDIR)/symcat.h $(srcdir)/config/obj-bout.h \ | |
1194 | $(srcdir)/config/tc-i960.h $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \ | |
1195 | $(INCDIR)/opcode/i960.h | |
1196 | DEPTC_i960_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1197 | $(srcdir)/config/tc-i960.h $(INCDIR)/coff/internal.h \ | |
1198 | $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \ | |
1199 | $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/i960.h | |
1200 | DEPTC_i960_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1201 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1202 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h \ | |
1203 | $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/i960.h | |
55eab186 AM |
1204 | DEPTC_ip2k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1205 | $(srcdir)/config/tc-ip2k.h $(INCDIR)/coff/internal.h \ | |
87ccc1b0 NC |
1206 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \ |
1207 | $(srcdir)/../opcodes/ip2k-desc.h $(INCDIR)/opcode/cgen.h \ | |
1208 | $(srcdir)/../opcodes/ip2k-opc.h cgen.h $(INCDIR)/elf/common.h \ | |
1209 | $(INCDIR)/elf/ip2k.h $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/libbfd.h | |
a40cbfa3 NC |
1210 | DEPTC_ip2k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1211 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1212 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ip2k.h \ | |
87ccc1b0 | 1213 | subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/ip2k-desc.h \ |
55eab186 AM |
1214 | $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/ip2k-opc.h \ |
1215 | cgen.h $(INCDIR)/elf/ip2k.h $(INCDIR)/elf/reloc-macros.h \ | |
1216 | $(BFDDIR)/libbfd.h | |
403487ec AM |
1217 | DEPTC_m32r_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1218 | $(srcdir)/config/tc-m32r.h $(INCDIR)/coff/internal.h \ | |
1219 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ | |
1220 | subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/m32r-desc.h \ | |
45f85b08 | 1221 | $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/m32r-opc.h \ |
6e1772d5 | 1222 | cgen.h $(INCDIR)/elf/m32r.h $(INCDIR)/elf/reloc-macros.h |
403487ec AM |
1223 | DEPTC_m32r_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1224 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1225 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h \ | |
1226 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
1227 | $(srcdir)/../opcodes/m32r-desc.h $(INCDIR)/opcode/cgen.h \ | |
6e1772d5 AM |
1228 | $(srcdir)/../opcodes/m32r-opc.h cgen.h $(INCDIR)/elf/m32r.h \ |
1229 | $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1230 | DEPTC_m68hc11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1231 | $(srcdir)/config/tc-m68hc11.h $(INCDIR)/coff/internal.h \ | |
1232 | $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1233 | $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \ | |
6539b54b AM |
1234 | $(INCDIR)/obstack.h $(INCDIR)/opcode/m68hc11.h dwarf2dbg.h \ |
1235 | $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1236 | DEPTC_m68hc11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1237 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1238 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h \ | |
1239 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
6539b54b AM |
1240 | $(INCDIR)/opcode/m68hc11.h dwarf2dbg.h $(INCDIR)/elf/m68hc11.h \ |
1241 | $(INCDIR)/elf/reloc-macros.h | |
403487ec | 1242 | DEPTC_m68k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
01580992 | 1243 | $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ |
528a2d4a | 1244 | $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h subsegs.h \ |
da64f3bf AM |
1245 | dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/m68k.h \ |
1246 | $(srcdir)/config/m68k-parse.h | |
403487ec AM |
1247 | DEPTC_m68k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1248 | $(srcdir)/config/tc-m68k.h $(INCDIR)/coff/internal.h \ | |
1249 | $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1250 | $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \ | |
da64f3bf AM |
1251 | subsegs.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \ |
1252 | $(INCDIR)/opcode/m68k.h $(srcdir)/config/m68k-parse.h | |
403487ec AM |
1253 | DEPTC_m68k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1254 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1255 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h \ | |
1256 | $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h subsegs.h \ | |
da64f3bf AM |
1257 | dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/m68k.h \ |
1258 | $(srcdir)/config/m68k-parse.h $(INCDIR)/elf/m68k.h \ | |
1259 | $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1260 | DEPTC_m68k_hp300 = $(INCDIR)/symcat.h $(srcdir)/config/obj-hp300.h \ |
1261 | $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \ | |
1262 | $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ | |
da64f3bf AM |
1263 | $(INCDIR)/obstack.h subsegs.h dwarf2dbg.h dw2gencfi.h \ |
1264 | $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/m68k.h $(srcdir)/config/m68k-parse.h | |
403487ec AM |
1265 | DEPTC_m88k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1266 | $(srcdir)/config/tc-m88k.h $(INCDIR)/coff/internal.h \ | |
1267 | $(INCDIR)/coff/m88k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1268 | $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \ | |
1269 | $(INCDIR)/obstack.h $(srcdir)/config/m88k-opcode.h | |
1270 | DEPTC_m88k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1271 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1272 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h \ | |
1273 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
1274 | $(srcdir)/config/m88k-opcode.h | |
1275 | DEPTC_mcore_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1276 | $(srcdir)/config/tc-mcore.h $(INCDIR)/coff/internal.h \ | |
1277 | $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1278 | $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/mcore-opc.h \ | |
1279 | $(INCDIR)/safe-ctype.h | |
1280 | DEPTC_mcore_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1281 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1282 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h \ | |
1283 | subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/mcore-opc.h \ | |
528a2d4a | 1284 | $(INCDIR)/safe-ctype.h $(INCDIR)/elf/mcore.h $(INCDIR)/elf/reloc-macros.h |
403487ec AM |
1285 | DEPTC_mips_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1286 | $(srcdir)/config/tc-mips.h $(INCDIR)/coff/internal.h \ | |
1287 | $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1288 | $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \ | |
e90b95f6 | 1289 | $(INCDIR)/opcode/mips.h itbl-ops.h dwarf2dbg.h $(srcdir)/config/obj-elf.h \ |
403487ec AM |
1290 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
1291 | $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \ | |
1292 | ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h | |
1293 | DEPTC_mips_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \ | |
1294 | $(srcdir)/config/tc-mips.h ecoff.h $(INCDIR)/coff/sym.h \ | |
1295 | $(INCDIR)/coff/ecoff.h subsegs.h $(INCDIR)/obstack.h \ | |
528a2d4a | 1296 | $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/mips.h itbl-ops.h \ |
e90b95f6 AM |
1297 | dwarf2dbg.h $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \ |
1298 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1299 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1300 | DEPTC_mips_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1301 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1302 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h \ | |
1303 | subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \ | |
e90b95f6 | 1304 | $(INCDIR)/opcode/mips.h itbl-ops.h dwarf2dbg.h $(INCDIR)/elf/mips.h \ |
528a2d4a HPN |
1305 | $(INCDIR)/elf/reloc-macros.h ecoff.h $(INCDIR)/coff/sym.h \ |
1306 | $(INCDIR)/coff/ecoff.h | |
dcc46170 HPN |
1307 | DEPTC_mmix_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1308 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1309 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h \ | |
1310 | subsegs.h $(INCDIR)/obstack.h $(INCDIR)/elf/mmix.h \ | |
1311 | $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/mmix.h \ | |
1312 | $(INCDIR)/safe-ctype.h dwarf2dbg.h | |
403487ec AM |
1313 | DEPTC_mn10200_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1314 | $(srcdir)/config/tc-mn10200.h $(INCDIR)/coff/internal.h \ | |
1315 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ | |
1316 | subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10200.h | |
1317 | DEPTC_mn10200_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
528a2d4a | 1318 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
403487ec | 1319 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h \ |
528a2d4a HPN |
1320 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
1321 | $(INCDIR)/opcode/mn10200.h | |
403487ec AM |
1322 | DEPTC_mn10300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1323 | $(srcdir)/config/tc-mn10300.h $(INCDIR)/coff/internal.h \ | |
1324 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ | |
528a2d4a HPN |
1325 | subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10300.h \ |
1326 | dwarf2dbg.h | |
403487ec AM |
1327 | DEPTC_mn10300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1328 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1329 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h \ | |
1330 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
1331 | $(INCDIR)/opcode/mn10300.h dwarf2dbg.h | |
f62ba8f2 AM |
1332 | DEPTC_msp430_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1333 | $(srcdir)/config/tc-msp430.h $(INCDIR)/coff/internal.h \ | |
1334 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \ | |
1335 | $(INCDIR)/opcode/msp430.h $(INCDIR)/safe-ctype.h | |
1336 | DEPTC_msp430_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1337 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1338 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-msp430.h \ | |
1339 | subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/msp430.h \ | |
1340 | $(INCDIR)/safe-ctype.h | |
403487ec AM |
1341 | DEPTC_ns32k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1342 | $(srcdir)/config/tc-ns32k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
45f85b08 | 1343 | $(INCDIR)/opcode/ns32k.h $(INCDIR)/obstack.h |
403487ec AM |
1344 | DEPTC_ns32k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1345 | $(srcdir)/config/tc-ns32k.h $(INCDIR)/coff/internal.h \ | |
1346 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ns32k.h \ | |
01580992 | 1347 | $(INCDIR)/obstack.h |
403487ec AM |
1348 | DEPTC_ns32k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1349 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1350 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h \ | |
1351 | $(INCDIR)/opcode/ns32k.h $(INCDIR)/obstack.h | |
1352 | DEPTC_openrisc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1353 | $(srcdir)/config/tc-openrisc.h $(INCDIR)/coff/internal.h \ | |
1354 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \ | |
1355 | $(srcdir)/../opcodes/openrisc-desc.h $(INCDIR)/opcode/cgen.h \ | |
1356 | $(srcdir)/../opcodes/openrisc-opc.h cgen.h | |
1357 | DEPTC_openrisc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1358 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1359 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h \ | |
1360 | subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/openrisc-desc.h \ | |
c7e40348 NC |
1361 | $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/openrisc-opc.h \ |
1362 | cgen.h | |
ba323545 AM |
1363 | DEPTC_or32_coff = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \ |
1364 | $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-or32.h \ | |
1365 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h \ | |
1366 | $(INCDIR)/bfdlink.h $(INCDIR)/opcode/or32.h $(INCDIR)/elf/or32.h \ | |
1367 | $(INCDIR)/elf/reloc-macros.h | |
1368 | DEPTC_or32_elf = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \ | |
1369 | $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \ | |
1370 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
1371 | $(srcdir)/config/tc-or32.h $(INCDIR)/opcode/or32.h \ | |
1372 | $(INCDIR)/elf/or32.h $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1373 | DEPTC_pdp11_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1374 | $(srcdir)/config/tc-pdp11.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
528a2d4a | 1375 | $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pdp11.h |
403487ec AM |
1376 | DEPTC_pdp11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1377 | $(srcdir)/config/tc-pdp11.h $(INCDIR)/coff/internal.h \ | |
1378 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ | |
528a2d4a | 1379 | $(INCDIR)/opcode/pdp11.h |
403487ec AM |
1380 | DEPTC_pdp11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1381 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1382 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h \ | |
1383 | $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pdp11.h | |
1384 | DEPTC_pj_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1385 | $(srcdir)/config/tc-pj.h $(INCDIR)/coff/internal.h \ | |
1386 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ | |
528a2d4a | 1387 | $(INCDIR)/opcode/pj.h |
403487ec AM |
1388 | DEPTC_pj_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1389 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1390 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h \ | |
1391 | $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pj.h | |
1392 | DEPTC_ppc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1393 | $(srcdir)/config/tc-ppc.h $(INCDIR)/coff/internal.h \ | |
1394 | $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \ | |
528a2d4a | 1395 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
da64f3bf | 1396 | dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/ppc.h |
403487ec AM |
1397 | DEPTC_ppc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1398 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1399 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h \ | |
1400 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
da64f3bf AM |
1401 | dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/ppc.h \ |
1402 | $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h | |
403487ec AM |
1403 | DEPTC_s390_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1404 | $(srcdir)/config/tc-s390.h $(INCDIR)/coff/internal.h \ | |
1405 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ | |
6539b54b | 1406 | subsegs.h $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h \ |
da64f3bf AM |
1407 | dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/s390.h \ |
1408 | $(INCDIR)/elf/s390.h $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1409 | DEPTC_s390_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1410 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1411 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h \ | |
1412 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
da64f3bf AM |
1413 | struc-symbol.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \ |
1414 | $(INCDIR)/opcode/s390.h $(INCDIR)/elf/s390.h $(INCDIR)/elf/reloc-macros.h | |
403487ec AM |
1415 | DEPTC_sh_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1416 | $(srcdir)/config/tc-sh.h $(INCDIR)/coff/internal.h \ | |
1417 | $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1418 | $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/sh-opc.h \ | |
6e1772d5 AM |
1419 | $(INCDIR)/safe-ctype.h struc-symbol.h dwarf2dbg.h dw2gencfi.h \ |
1420 | $(INCDIR)/elf/dwarf2.h | |
403487ec AM |
1421 | DEPTC_sh_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1422 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1423 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h \ | |
1424 | subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/sh-opc.h \ | |
1425 | $(INCDIR)/safe-ctype.h struc-symbol.h $(INCDIR)/elf/sh.h \ | |
6e1772d5 AM |
1426 | $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h dw2gencfi.h \ |
1427 | $(INCDIR)/elf/dwarf2.h | |
d5b32339 AM |
1428 | DEPTC_sh64_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1429 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1430 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h \ | |
1431 | $(srcdir)/config/tc-sh.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \ | |
f0abc2a1 | 1432 | $(BFDDIR)/elf32-sh64.h $(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/sh64-opc.h \ |
d5b32339 | 1433 | $(srcdir)/config/tc-sh.c subsegs.h $(INCDIR)/obstack.h \ |
6e1772d5 AM |
1434 | $(srcdir)/../opcodes/sh-opc.h struc-symbol.h dwarf2dbg.h \ |
1435 | dw2gencfi.h $(INCDIR)/elf/dwarf2.h | |
403487ec AM |
1436 | DEPTC_sparc_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1437 | $(srcdir)/config/tc-sparc.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
1438 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
9fa06c65 | 1439 | $(INCDIR)/opcode/sparc.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h |
403487ec AM |
1440 | DEPTC_sparc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1441 | $(srcdir)/config/tc-sparc.h $(INCDIR)/coff/internal.h \ | |
1442 | $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1443 | $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \ | |
9fa06c65 AM |
1444 | $(INCDIR)/obstack.h $(INCDIR)/opcode/sparc.h dw2gencfi.h \ |
1445 | $(INCDIR)/elf/dwarf2.h | |
403487ec AM |
1446 | DEPTC_sparc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1447 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1448 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h \ | |
1449 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
9fa06c65 AM |
1450 | $(INCDIR)/opcode/sparc.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \ |
1451 | $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \ | |
528a2d4a | 1452 | dwarf2dbg.h |
403487ec AM |
1453 | DEPTC_tahoe_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1454 | $(srcdir)/config/tc-tahoe.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
1455 | $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/tahoe.h | |
1456 | DEPTC_tahoe_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1457 | $(srcdir)/config/tc-tahoe.h $(INCDIR)/coff/internal.h \ | |
528a2d4a | 1458 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \ |
528a2d4a | 1459 | $(INCDIR)/obstack.h $(INCDIR)/opcode/tahoe.h |
403487ec AM |
1460 | DEPTC_tahoe_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1461 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1462 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h \ | |
528a2d4a | 1463 | $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/tahoe.h |
403487ec AM |
1464 | DEPTC_tic30_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1465 | $(srcdir)/config/tc-tic30.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
1466 | $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h | |
1467 | DEPTC_tic30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1468 | $(srcdir)/config/tc-tic30.h $(INCDIR)/coff/internal.h \ | |
1469 | $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1470 | $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h | |
1471 | DEPTC_tic30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1472 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1473 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic30.h \ | |
1474 | $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h | |
da64f3bf AM |
1475 | DEPTC_tic4x_coff = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \ |
1476 | $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic4x.h \ | |
1477 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h \ | |
1478 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/tic4x.h \ | |
1479 | subsegs.h $(INCDIR)/obstack.h | |
1480 | DEPTC_tic4x_elf = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \ | |
1481 | $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \ | |
1482 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
1483 | $(srcdir)/config/tc-tic4x.h $(INCDIR)/opcode/tic4x.h \ | |
1484 | subsegs.h $(INCDIR)/obstack.h | |
403487ec AM |
1485 | DEPTC_tic54x_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1486 | $(srcdir)/config/tc-tic54x.h $(INCDIR)/coff/internal.h \ | |
1487 | $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \ | |
1488 | $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h sb.h macro.h \ | |
1489 | subsegs.h $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/opcode/tic54x.h | |
1490 | DEPTC_tic54x_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1491 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1492 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic54x.h \ | |
1493 | $(INCDIR)/safe-ctype.h sb.h macro.h subsegs.h $(INCDIR)/obstack.h \ | |
1494 | struc-symbol.h $(INCDIR)/opcode/tic54x.h $(srcdir)/config/obj-coff.h \ | |
1581f8c9 AM |
1495 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h \ |
1496 | $(BFDDIR)/libcoff.h | |
403487ec AM |
1497 | DEPTC_tic80_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1498 | $(srcdir)/config/tc-tic80.h $(INCDIR)/coff/internal.h \ | |
1499 | $(INCDIR)/coff/tic80.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1500 | $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic80.h | |
1501 | DEPTC_tic80_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1502 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1503 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic80.h \ | |
1504 | $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic80.h | |
1505 | DEPTC_vax_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ | |
1506 | $(srcdir)/config/tc-vax.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
ce4f7385 AM |
1507 | $(srcdir)/config/vax-inst.h $(INCDIR)/obstack.h subsegs.h \ |
1508 | $(INCDIR)/opcode/vax.h $(INCDIR)/safe-ctype.h | |
403487ec AM |
1509 | DEPTC_vax_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1510 | $(srcdir)/config/tc-vax.h $(INCDIR)/coff/internal.h \ | |
1511 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(srcdir)/config/vax-inst.h \ | |
ce4f7385 AM |
1512 | $(INCDIR)/obstack.h subsegs.h $(INCDIR)/opcode/vax.h \ |
1513 | $(INCDIR)/safe-ctype.h | |
403487ec AM |
1514 | DEPTC_vax_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1515 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1516 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h \ | |
ce4f7385 AM |
1517 | $(srcdir)/config/vax-inst.h $(INCDIR)/obstack.h subsegs.h \ |
1518 | $(INCDIR)/elf/vax.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/vax.h \ | |
403487ec AM |
1519 | $(INCDIR)/safe-ctype.h |
1520 | DEPTC_vax_vms = $(INCDIR)/symcat.h $(srcdir)/config/obj-vms.h \ | |
1521 | $(srcdir)/config/tc-vax.h $(INCDIR)/aout/stab_gnu.h \ | |
1522 | $(INCDIR)/aout/stab.def $(srcdir)/config/vax-inst.h \ | |
ce4f7385 AM |
1523 | $(INCDIR)/obstack.h subsegs.h $(INCDIR)/opcode/vax.h \ |
1524 | $(INCDIR)/safe-ctype.h | |
403487ec AM |
1525 | DEPTC_w65_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1526 | $(srcdir)/config/tc-w65.h $(INCDIR)/coff/internal.h \ | |
1527 | $(INCDIR)/coff/w65.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1528 | $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/w65-opc.h | |
1529 | DEPTC_w65_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1530 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1531 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h \ | |
1532 | subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/w65-opc.h | |
1533 | DEPTC_v850_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
8e42bcb6 AM |
1534 | $(srcdir)/config/tc-v850.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h \ |
1535 | $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \ | |
1536 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
1537 | $(INCDIR)/opcode/v850.h dwarf2dbg.h | |
403487ec | 1538 | DEPTC_v850_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1581f8c9 | 1539 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
403487ec | 1540 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h \ |
8e42bcb6 AM |
1541 | $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \ |
1542 | subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/v850.h \ | |
1543 | dwarf2dbg.h | |
c0ef99a7 AM |
1544 | DEPTC_xstormy16_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1545 | $(srcdir)/config/tc-xstormy16.h $(INCDIR)/coff/internal.h \ | |
1546 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \ | |
1547 | $(srcdir)/../opcodes/xstormy16-desc.h $(INCDIR)/opcode/cgen.h \ | |
1548 | $(srcdir)/../opcodes/xstormy16-opc.h cgen.h | |
1549 | DEPTC_xstormy16_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1550 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1551 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h \ | |
1552 | subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/xstormy16-desc.h \ | |
1553 | $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/xstormy16-opc.h \ | |
1554 | cgen.h | |
e0001a05 NC |
1555 | DEPTC_xtensa_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1556 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1557 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xtensa.h \ | |
43cd72b9 BW |
1558 | $(INCDIR)/xtensa-isa.h $(INCDIR)/xtensa-config.h sb.h \ |
1559 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
1560 | $(srcdir)/config/xtensa-relax.h $(srcdir)/config/xtensa-istack.h \ | |
9fa06c65 | 1561 | dwarf2dbg.h struc-symbol.h |
dcc46170 HPN |
1562 | DEPTC_z8k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1563 | $(srcdir)/config/tc-z8k.h $(INCDIR)/coff/internal.h \ | |
1564 | $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1565 | $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/z8k-opc.h | |
1566 | DEPTC_z8k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1567 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1568 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h \ | |
1569 | $(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/z8k-opc.h | |
04ad1543 | 1570 | DEPTC_hppa_som = $(srcdir)/config/tc-hppa.h subsegs.h \ |
252b5132 RH |
1571 | $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h \ |
1572 | $(BFDDIR)/som.h | |
16adf844 AM |
1573 | DEPTC_i386_multi = $(DEPTC_i386_aout) $(DEPTC_i386_coff) \ |
1574 | $(DEPTC_i386_elf) | |
04ad1543 ILT |
1575 | DEPTC_mips_multi = $(DEPTC_mips_coff) $(DEPTC_mips_ecoff) \ |
1576 | $(DEPTC_mips_elf) | |
3bcbcc3d | 1577 | DEPTC_cris_multi = $(DEPTC_cris_aout) $(DEPTC_cris_elf) |
403487ec AM |
1578 | DEPOBJ_a29k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1579 | $(srcdir)/config/tc-a29k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
1580 | $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h | |
795bb480 AM |
1581 | DEPOBJ_a29k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1582 | $(srcdir)/config/tc-a29k.h $(INCDIR)/coff/internal.h \ | |
1583 | $(INCDIR)/coff/a29k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1584 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
403487ec AM |
1585 | DEPOBJ_a29k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1586 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1587 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h \ | |
1588 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1589 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1590 | DEPOBJ_alpha_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1591 | $(srcdir)/config/tc-alpha.h $(INCDIR)/coff/internal.h \ | |
1592 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1593 | subsegs.h | |
403487ec AM |
1594 | DEPOBJ_alpha_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \ |
1595 | $(srcdir)/config/tc-alpha.h ecoff.h $(INCDIR)/coff/sym.h \ | |
1596 | $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ | |
1597 | $(INCDIR)/bfdlink.h $(BFDDIR)/libecoff.h | |
1598 | DEPOBJ_alpha_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1599 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1600 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h \ | |
1601 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 NC |
1602 | struc-symbol.h dwarf2dbg.h ecoff.h $(INCDIR)/coff/sym.h \ |
1603 | $(INCDIR)/coff/ecoff.h $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \ | |
403487ec AM |
1604 | $(INCDIR)/aout/aout64.h |
1605 | DEPOBJ_alpha_evax = $(INCDIR)/symcat.h $(srcdir)/config/obj-evax.h \ | |
1606 | $(srcdir)/config/tc-alpha.h | |
795bb480 AM |
1607 | DEPOBJ_arc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1608 | $(srcdir)/config/tc-arc.h $(INCDIR)/coff/internal.h \ | |
1609 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1610 | subsegs.h | |
403487ec AM |
1611 | DEPOBJ_arc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1612 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1613 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h \ | |
6539b54b | 1614 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
87ccc1b0 | 1615 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1616 | DEPOBJ_arm_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1617 | $(srcdir)/config/tc-arm.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
1618 | $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h | |
795bb480 AM |
1619 | DEPOBJ_arm_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1620 | $(srcdir)/config/tc-arm.h $(INCDIR)/coff/internal.h \ | |
1621 | $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1622 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
403487ec AM |
1623 | DEPOBJ_arm_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1624 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1625 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h \ | |
528a2d4a | 1626 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
87ccc1b0 | 1627 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1628 | DEPOBJ_avr_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1629 | $(srcdir)/config/tc-avr.h $(INCDIR)/coff/internal.h \ | |
1630 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1631 | subsegs.h | |
403487ec AM |
1632 | DEPOBJ_avr_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1633 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1634 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-avr.h \ | |
1635 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1636 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1637 | DEPOBJ_cris_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1638 | $(srcdir)/config/tc-cris.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
1639 | $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h | |
1640 | DEPOBJ_cris_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1641 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1642 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h \ | |
1643 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1644 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
8ea2b00f AM |
1645 | DEPOBJ_crx_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1646 | $(srcdir)/config/tc-crx.h $(INCDIR)/coff/internal.h \ | |
1647 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1648 | subsegs.h | |
1649 | DEPOBJ_crx_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1650 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1651 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-crx.h \ | |
1652 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
1653 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h | |
795bb480 AM |
1654 | DEPOBJ_d10v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1655 | $(srcdir)/config/tc-d10v.h $(INCDIR)/coff/internal.h \ | |
1656 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1657 | subsegs.h | |
403487ec AM |
1658 | DEPOBJ_d10v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1659 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1660 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h \ | |
1661 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1662 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1663 | DEPOBJ_d30v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1664 | $(srcdir)/config/tc-d30v.h $(INCDIR)/coff/internal.h \ | |
1665 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1666 | subsegs.h | |
403487ec AM |
1667 | DEPOBJ_d30v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1668 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1669 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h \ | |
528a2d4a | 1670 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
87ccc1b0 | 1671 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1672 | DEPOBJ_dlx_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1673 | $(srcdir)/config/tc-dlx.h $(INCDIR)/coff/internal.h \ | |
1674 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1675 | subsegs.h | |
d172d4ba NC |
1676 | DEPOBJ_dlx_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1677 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1678 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-dlx.h \ | |
194b5210 | 1679 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
87ccc1b0 | 1680 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1681 | DEPOBJ_fr30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1682 | $(srcdir)/config/tc-fr30.h $(INCDIR)/coff/internal.h \ | |
1683 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1684 | subsegs.h | |
403487ec AM |
1685 | DEPOBJ_fr30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1686 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1687 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h \ | |
1688 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1689 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1690 | DEPOBJ_frv_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1691 | $(srcdir)/config/tc-frv.h $(INCDIR)/coff/internal.h \ | |
1692 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1693 | subsegs.h | |
0ebb9a87 DB |
1694 | DEPOBJ_frv_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1695 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1696 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-frv.h \ | |
1697 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1698 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1699 | DEPOBJ_h8300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1700 | $(srcdir)/config/tc-h8300.h $(INCDIR)/coff/internal.h \ | |
1701 | $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1702 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
403487ec AM |
1703 | DEPOBJ_h8300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1704 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1705 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h \ | |
1706 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1707 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1708 | DEPOBJ_h8500_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1709 | $(srcdir)/config/tc-h8500.h $(INCDIR)/coff/internal.h \ | |
1710 | $(INCDIR)/coff/h8500.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1711 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
403487ec AM |
1712 | DEPOBJ_h8500_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1713 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1714 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h \ | |
1715 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1716 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1717 | DEPOBJ_hppa_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1718 | $(srcdir)/config/tc-hppa.h $(INCDIR)/coff/internal.h \ | |
1719 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1720 | subsegs.h | |
403487ec AM |
1721 | DEPOBJ_hppa_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1722 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1723 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h \ | |
1724 | $(BFDDIR)/elf32-hppa.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \ | |
1725 | $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \ | |
87ccc1b0 NC |
1726 | subsegs.h $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h \ |
1727 | $(INCDIR)/aout/aout64.h | |
795bb480 AM |
1728 | DEPOBJ_ia64_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1729 | $(srcdir)/config/tc-ia64.h $(INCDIR)/opcode/ia64.h \ | |
1730 | $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \ | |
1731 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1732 | subsegs.h | |
403487ec AM |
1733 | DEPOBJ_ia64_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1734 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1735 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ia64.h \ | |
8e42bcb6 | 1736 | $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h \ |
403487ec | 1737 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
87ccc1b0 | 1738 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1739 | DEPOBJ_i370_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1740 | $(srcdir)/config/tc-i370.h $(INCDIR)/coff/internal.h \ | |
1741 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1742 | subsegs.h | |
403487ec AM |
1743 | DEPOBJ_i370_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1744 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1745 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h \ | |
1746 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1747 | struc-symbol.h dwarf2dbg.h $(INCDIR)/elf/i370.h $(INCDIR)/elf/reloc-macros.h \ |
6539b54b | 1748 | $(INCDIR)/aout/aout64.h |
403487ec AM |
1749 | DEPOBJ_i386_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1750 | $(srcdir)/config/tc-i386.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
1751 | $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h | |
795bb480 AM |
1752 | DEPOBJ_i386_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1753 | $(srcdir)/config/tc-i386.h $(INCDIR)/coff/internal.h \ | |
1754 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1755 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
403487ec AM |
1756 | DEPOBJ_i386_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1757 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1758 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h \ | |
1759 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1760 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1761 | DEPOBJ_i860_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1762 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1763 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h \ | |
1764 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1765 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1766 | DEPOBJ_i960_bout = $(INCDIR)/symcat.h $(srcdir)/config/obj-bout.h \ |
1767 | $(srcdir)/config/tc-i960.h $(INCDIR)/obstack.h | |
795bb480 AM |
1768 | DEPOBJ_i960_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1769 | $(srcdir)/config/tc-i960.h $(INCDIR)/coff/internal.h \ | |
1770 | $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \ | |
1771 | $(INCDIR)/obstack.h subsegs.h | |
403487ec AM |
1772 | DEPOBJ_i960_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1773 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1774 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h \ | |
1775 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1776 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1777 | DEPOBJ_ip2k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1778 | $(srcdir)/config/tc-ip2k.h $(INCDIR)/coff/internal.h \ | |
1779 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1780 | subsegs.h | |
a40cbfa3 NC |
1781 | DEPOBJ_ip2k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1782 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1783 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ip2k.h \ | |
1784 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1785 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1786 | DEPOBJ_m32r_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1787 | $(srcdir)/config/tc-m32r.h $(INCDIR)/coff/internal.h \ | |
1788 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1789 | subsegs.h | |
403487ec AM |
1790 | DEPOBJ_m32r_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1791 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1792 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h \ | |
1793 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1794 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1795 | DEPOBJ_m68hc11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1796 | $(srcdir)/config/tc-m68hc11.h $(INCDIR)/coff/internal.h \ | |
1797 | $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1798 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
403487ec AM |
1799 | DEPOBJ_m68hc11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1800 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1801 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h \ | |
1802 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1803 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1804 | DEPOBJ_m68k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1805 | $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
1806 | $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h | |
795bb480 AM |
1807 | DEPOBJ_m68k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1808 | $(srcdir)/config/tc-m68k.h $(INCDIR)/coff/internal.h \ | |
1809 | $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1810 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
403487ec AM |
1811 | DEPOBJ_m68k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1812 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1813 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h \ | |
1814 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1815 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1816 | DEPOBJ_m68k_hp300 = $(srcdir)/config/obj-aout.c $(INCDIR)/symcat.h \ |
1817 | $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \ | |
01580992 L |
1818 | $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \ |
1819 | $(INCDIR)/obstack.h | |
795bb480 AM |
1820 | DEPOBJ_m88k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1821 | $(srcdir)/config/tc-m88k.h $(INCDIR)/coff/internal.h \ | |
1822 | $(INCDIR)/coff/m88k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1823 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
403487ec AM |
1824 | DEPOBJ_m88k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1825 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1826 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h \ | |
1827 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1828 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1829 | DEPOBJ_mcore_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1830 | $(srcdir)/config/tc-mcore.h $(INCDIR)/coff/internal.h \ | |
1831 | $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1832 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
403487ec AM |
1833 | DEPOBJ_mcore_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1834 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1835 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h \ | |
1836 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1837 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1838 | DEPOBJ_mips_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1839 | $(srcdir)/config/tc-mips.h $(INCDIR)/coff/internal.h \ | |
1840 | $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1841 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
403487ec AM |
1842 | DEPOBJ_mips_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \ |
1843 | $(srcdir)/config/tc-mips.h ecoff.h $(INCDIR)/coff/sym.h \ | |
1844 | $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ | |
1845 | $(INCDIR)/bfdlink.h $(BFDDIR)/libecoff.h | |
1846 | DEPOBJ_mips_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1847 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1848 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h \ | |
1849 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 NC |
1850 | struc-symbol.h dwarf2dbg.h ecoff.h $(INCDIR)/coff/sym.h \ |
1851 | $(INCDIR)/coff/ecoff.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \ | |
1852 | $(INCDIR)/aout/aout64.h | |
dcc46170 HPN |
1853 | DEPOBJ_mmix_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1854 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1855 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h \ | |
1856 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1857 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1858 | DEPOBJ_mn10200_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1859 | $(srcdir)/config/tc-mn10200.h $(INCDIR)/coff/internal.h \ | |
1860 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1861 | subsegs.h | |
403487ec AM |
1862 | DEPOBJ_mn10200_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1863 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1864 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h \ | |
1865 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1866 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1867 | DEPOBJ_mn10300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1868 | $(srcdir)/config/tc-mn10300.h $(INCDIR)/coff/internal.h \ | |
1869 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1870 | subsegs.h | |
403487ec AM |
1871 | DEPOBJ_mn10300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1872 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1873 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h \ | |
528a2d4a | 1874 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ |
87ccc1b0 | 1875 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1876 | DEPOBJ_msp430_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1877 | $(srcdir)/config/tc-msp430.h $(INCDIR)/coff/internal.h \ | |
1878 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1879 | subsegs.h | |
f62ba8f2 AM |
1880 | DEPOBJ_msp430_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1881 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1882 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-msp430.h \ | |
1883 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1884 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1885 | DEPOBJ_ns32k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1886 | $(srcdir)/config/tc-ns32k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
1887 | $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h | |
795bb480 AM |
1888 | DEPOBJ_ns32k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1889 | $(srcdir)/config/tc-ns32k.h $(INCDIR)/coff/internal.h \ | |
1890 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1891 | subsegs.h | |
403487ec AM |
1892 | DEPOBJ_ns32k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1893 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1894 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h \ | |
1895 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1896 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
795bb480 AM |
1897 | DEPOBJ_openrisc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1898 | $(srcdir)/config/tc-openrisc.h $(INCDIR)/coff/internal.h \ | |
1899 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
1900 | subsegs.h | |
403487ec AM |
1901 | DEPOBJ_openrisc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1902 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1903 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h \ | |
1904 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1905 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
ba323545 AM |
1906 | DEPOBJ_or32_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1907 | $(srcdir)/config/tc-or32.h $(INCDIR)/coff/internal.h \ | |
1908 | $(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \ | |
1909 | $(INCDIR)/obstack.h subsegs.h | |
1910 | DEPOBJ_or32_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1911 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1912 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-or32.h \ | |
1913 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1914 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1915 | DEPOBJ_pdp11_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1916 | $(srcdir)/config/tc-pdp11.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
1917 | $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h | |
1918 | DEPOBJ_pdp11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1919 | $(srcdir)/config/tc-pdp11.h $(INCDIR)/coff/internal.h \ | |
3438adb3 AM |
1920 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ |
1921 | subsegs.h | |
403487ec AM |
1922 | DEPOBJ_pdp11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1923 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1924 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h \ | |
1925 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1926 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1927 | DEPOBJ_pj_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1928 | $(srcdir)/config/tc-pj.h $(INCDIR)/coff/internal.h \ | |
3438adb3 AM |
1929 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ |
1930 | subsegs.h | |
403487ec AM |
1931 | DEPOBJ_pj_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1932 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1933 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h \ | |
1934 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1935 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1936 | DEPOBJ_ppc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1937 | $(srcdir)/config/tc-ppc.h $(INCDIR)/coff/internal.h \ | |
1938 | $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \ | |
1939 | $(INCDIR)/obstack.h subsegs.h | |
1940 | DEPOBJ_ppc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1941 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1942 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h \ | |
1943 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1944 | struc-symbol.h dwarf2dbg.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h \ |
e90b95f6 | 1945 | $(INCDIR)/aout/aout64.h |
403487ec AM |
1946 | DEPOBJ_s390_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1947 | $(srcdir)/config/tc-s390.h $(INCDIR)/coff/internal.h \ | |
45f85b08 L |
1948 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ |
1949 | subsegs.h | |
403487ec AM |
1950 | DEPOBJ_s390_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1951 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1952 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h \ | |
1953 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1954 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1955 | DEPOBJ_sh_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
1956 | $(srcdir)/config/tc-sh.h $(INCDIR)/coff/internal.h \ | |
1957 | $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1958 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
1959 | DEPOBJ_sh_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1960 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1961 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h \ | |
1962 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1963 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
eb1e0e80 NC |
1964 | DEPOBJ_sh64_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1965 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1966 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h \ | |
1967 | $(srcdir)/config/tc-sh.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \ | |
e0001a05 | 1968 | $(BFDDIR)/elf32-sh64.h $(INCDIR)/safe-ctype.h subsegs.h \ |
87ccc1b0 | 1969 | $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1970 | DEPOBJ_sparc_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1971 | $(srcdir)/config/tc-sparc.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
1972 | $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h | |
1973 | DEPOBJ_sparc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1974 | $(srcdir)/config/tc-sparc.h $(INCDIR)/coff/internal.h \ | |
1975 | $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
1976 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
1977 | DEPOBJ_sparc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
1978 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1979 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h \ | |
1980 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1981 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1982 | DEPOBJ_tahoe_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1983 | $(srcdir)/config/tc-tahoe.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
1984 | $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h | |
1985 | DEPOBJ_tahoe_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1986 | $(srcdir)/config/tc-tahoe.h $(INCDIR)/coff/internal.h \ | |
3438adb3 AM |
1987 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ |
1988 | subsegs.h | |
403487ec AM |
1989 | DEPOBJ_tahoe_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
1990 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1991 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h \ | |
1992 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 1993 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
1994 | DEPOBJ_tic30_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
1995 | $(srcdir)/config/tc-tic30.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
1996 | $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h | |
1997 | DEPOBJ_tic30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
1998 | $(srcdir)/config/tc-tic30.h $(INCDIR)/coff/internal.h \ | |
1999 | $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
2000 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
2001 | DEPOBJ_tic30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
2002 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2003 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic30.h \ | |
2004 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 2005 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
f62ba8f2 AM |
2006 | DEPOBJ_tic4x_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
2007 | $(srcdir)/config/tc-tic4x.h $(INCDIR)/coff/internal.h \ | |
2008 | $(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \ | |
da64f3bf | 2009 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h |
f62ba8f2 AM |
2010 | DEPOBJ_tic4x_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
2011 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2012 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic4x.h \ | |
2013 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
da64f3bf | 2014 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
2015 | DEPOBJ_tic54x_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
2016 | $(srcdir)/config/tc-tic54x.h $(INCDIR)/coff/internal.h \ | |
2017 | $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \ | |
2018 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
2019 | DEPOBJ_tic54x_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
2020 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2021 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic54x.h \ | |
2022 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 2023 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
2024 | DEPOBJ_tic80_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
2025 | $(srcdir)/config/tc-tic80.h $(INCDIR)/coff/internal.h \ | |
2026 | $(INCDIR)/coff/tic80.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
2027 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
2028 | DEPOBJ_tic80_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
2029 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2030 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic80.h \ | |
2031 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 2032 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
2033 | DEPOBJ_vax_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \ |
2034 | $(srcdir)/config/tc-vax.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \ | |
2035 | $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h | |
2036 | DEPOBJ_vax_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
2037 | $(srcdir)/config/tc-vax.h $(INCDIR)/coff/internal.h \ | |
3438adb3 AM |
2038 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ |
2039 | subsegs.h | |
403487ec AM |
2040 | DEPOBJ_vax_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
2041 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2042 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h \ | |
2043 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 2044 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec AM |
2045 | DEPOBJ_vax_vms = $(INCDIR)/symcat.h $(srcdir)/config/obj-vms.h \ |
2046 | $(srcdir)/config/tc-vax.h $(INCDIR)/aout/stab_gnu.h \ | |
2047 | $(INCDIR)/aout/stab.def $(INCDIR)/safe-ctype.h subsegs.h \ | |
2048 | $(INCDIR)/obstack.h | |
2049 | DEPOBJ_w65_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ | |
2050 | $(srcdir)/config/tc-w65.h $(INCDIR)/coff/internal.h \ | |
2051 | $(INCDIR)/coff/w65.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
2052 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
2053 | DEPOBJ_w65_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
2054 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2055 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h \ | |
2056 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 2057 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
403487ec | 2058 | DEPOBJ_v850_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
8e42bcb6 AM |
2059 | $(srcdir)/config/tc-v850.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h \ |
2060 | $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \ | |
2061 | $(INCDIR)/obstack.h subsegs.h | |
403487ec AM |
2062 | DEPOBJ_v850_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
2063 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2064 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h \ | |
8e42bcb6 | 2065 | $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \ |
87ccc1b0 NC |
2066 | subsegs.h $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h \ |
2067 | $(INCDIR)/aout/aout64.h | |
c0ef99a7 AM |
2068 | DEPOBJ_xstormy16_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
2069 | $(srcdir)/config/tc-xstormy16.h $(INCDIR)/coff/internal.h \ | |
2070 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ | |
2071 | subsegs.h | |
2072 | DEPOBJ_xstormy16_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
2073 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2074 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h \ | |
2075 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 2076 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
e0001a05 NC |
2077 | DEPOBJ_xtensa_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ |
2078 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2079 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xtensa.h \ | |
43cd72b9 BW |
2080 | $(INCDIR)/xtensa-isa.h $(INCDIR)/xtensa-config.h $(INCDIR)/safe-ctype.h \ |
2081 | subsegs.h $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h \ | |
2082 | $(INCDIR)/aout/aout64.h | |
403487ec AM |
2083 | DEPOBJ_z8k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ |
2084 | $(srcdir)/config/tc-z8k.h $(INCDIR)/coff/internal.h \ | |
2085 | $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \ | |
2086 | $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h | |
2087 | DEPOBJ_z8k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \ | |
2088 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2089 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h \ | |
2090 | $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ | |
87ccc1b0 | 2091 | struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h |
04ad1543 | 2092 | DEPOBJ_hppa_som = $(srcdir)/config/obj-som.h subsegs.h \ |
252b5132 RH |
2093 | $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(BFDDIR)/som.h \ |
2094 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def | |
16adf844 AM |
2095 | DEPOBJ_i386_multi = $(DEPOBJ_i386_aout) $(DEPOBJ_i386_coff) \ |
2096 | $(DEPOBJ_i386_elf) | |
04ad1543 ILT |
2097 | DEPOBJ_mips_multi = $(DEPOBJ_mips_coff) $(DEPOBJ_mips_ecoff) \ |
2098 | $(DEPOBJ_mips_elf) | |
3bcbcc3d | 2099 | DEPOBJ_cris_multi = $(DEPOBJ_cris_aout) $(DEPOBJ_cris_elf) |
252b5132 RH |
2100 | DEP_a29k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-a29k.h \ |
2101 | $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h | |
2102 | DEP_a29k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-a29k.h \ | |
403487ec AM |
2103 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/a29k.h \ |
2104 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2105 | DEP_a29k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2106 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2107 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h | |
252b5132 | 2108 | DEP_alpha_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-alpha.h \ |
403487ec AM |
2109 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2110 | $(INCDIR)/bfdlink.h | |
252b5132 RH |
2111 | DEP_alpha_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-alpha.h \ |
2112 | ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h | |
403487ec AM |
2113 | DEP_alpha_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ |
2114 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2115 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h | |
252b5132 RH |
2116 | DEP_alpha_evax = $(srcdir)/config/obj-evax.h $(srcdir)/config/tc-alpha.h |
2117 | DEP_arc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arc.h \ | |
403487ec AM |
2118 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2119 | $(INCDIR)/bfdlink.h | |
2120 | DEP_arc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2121 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2122 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h | |
252b5132 RH |
2123 | DEP_arm_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-arm.h \ |
2124 | $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h | |
2125 | DEP_arm_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arm.h \ | |
403487ec AM |
2126 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/arm.h \ |
2127 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2128 | DEP_arm_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2129 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2130 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h | |
16adf844 | 2131 | DEP_avr_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-avr.h \ |
403487ec AM |
2132 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2133 | $(INCDIR)/bfdlink.h | |
2134 | DEP_avr_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2135 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2136 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-avr.h | |
3bcbcc3d HPN |
2137 | DEP_cris_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-cris.h \ |
2138 | $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h | |
403487ec AM |
2139 | DEP_cris_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ |
2140 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2141 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h | |
8ea2b00f AM |
2142 | DEP_crx_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-crx.h \ |
2143 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ | |
2144 | $(INCDIR)/bfdlink.h | |
2145 | DEP_crx_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2146 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2147 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-crx.h | |
252b5132 | 2148 | DEP_d10v_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-d10v.h \ |
403487ec AM |
2149 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2150 | $(INCDIR)/bfdlink.h | |
2151 | DEP_d10v_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2152 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2153 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h | |
252b5132 | 2154 | DEP_d30v_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-d30v.h \ |
403487ec AM |
2155 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2156 | $(INCDIR)/bfdlink.h | |
2157 | DEP_d30v_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2158 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2159 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h | |
194b5210 AM |
2160 | DEP_dlx_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-dlx.h \ |
2161 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ | |
2162 | $(INCDIR)/bfdlink.h | |
d172d4ba NC |
2163 | DEP_dlx_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ |
2164 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2165 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-dlx.h | |
252b5132 | 2166 | DEP_fr30_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-fr30.h \ |
403487ec AM |
2167 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2168 | $(INCDIR)/bfdlink.h | |
2169 | DEP_fr30_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2170 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2171 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h | |
0ebb9a87 DB |
2172 | DEP_frv_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-frv.h \ |
2173 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ | |
2174 | $(INCDIR)/bfdlink.h | |
2175 | DEP_frv_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2176 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2177 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-frv.h | |
252b5132 | 2178 | DEP_h8300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8300.h \ |
403487ec AM |
2179 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8300.h \ |
2180 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2181 | DEP_h8300_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2182 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2183 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h | |
252b5132 | 2184 | DEP_h8500_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8500.h \ |
403487ec AM |
2185 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8500.h \ |
2186 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2187 | DEP_h8500_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2188 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2189 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h | |
252b5132 | 2190 | DEP_hppa_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-hppa.h \ |
403487ec AM |
2191 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2192 | $(INCDIR)/bfdlink.h | |
2193 | DEP_hppa_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2194 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2195 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h \ | |
2196 | $(BFDDIR)/elf32-hppa.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \ | |
2197 | $(INCDIR)/elf/reloc-macros.h | |
3043679f | 2198 | DEP_ia64_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ia64.h \ |
8e42bcb6 AM |
2199 | $(INCDIR)/opcode/ia64.h $(INCDIR)/symcat.h $(INCDIR)/elf/ia64.h \ |
2200 | $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \ | |
2201 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
403487ec AM |
2202 | DEP_ia64_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ |
2203 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
8e42bcb6 AM |
2204 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ia64.h \ |
2205 | $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h | |
41b49281 | 2206 | DEP_i370_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i370.h \ |
403487ec AM |
2207 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2208 | $(INCDIR)/bfdlink.h | |
2209 | DEP_i370_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2210 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2211 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h | |
252b5132 RH |
2212 | DEP_i386_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i386.h \ |
2213 | $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h | |
2214 | DEP_i386_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i386.h \ | |
403487ec AM |
2215 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h \ |
2216 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2217 | DEP_i386_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2218 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2219 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h | |
2220 | DEP_i860_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2221 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2222 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h | |
252b5132 RH |
2223 | DEP_i960_bout = $(srcdir)/config/obj-bout.h $(srcdir)/config/tc-i960.h |
2224 | DEP_i960_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i960.h \ | |
403487ec AM |
2225 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/i960.h \ |
2226 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2227 | DEP_i960_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2228 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2229 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h | |
55eab186 AM |
2230 | DEP_ip2k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ip2k.h \ |
2231 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ | |
2232 | $(INCDIR)/bfdlink.h | |
a40cbfa3 NC |
2233 | DEP_ip2k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ |
2234 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2235 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ip2k.h | |
252b5132 | 2236 | DEP_m32r_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m32r.h \ |
403487ec AM |
2237 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2238 | $(INCDIR)/bfdlink.h | |
2239 | DEP_m32r_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2240 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2241 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h | |
45f85b08 | 2242 | DEP_m68hc11_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68hc11.h \ |
403487ec AM |
2243 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h \ |
2244 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2245 | DEP_m68hc11_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2246 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2247 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h | |
252b5132 RH |
2248 | DEP_m68k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \ |
2249 | $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h | |
2250 | DEP_m68k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68k.h \ | |
403487ec AM |
2251 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h \ |
2252 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2253 | DEP_m68k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2254 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2255 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h | |
252b5132 RH |
2256 | DEP_m68k_hp300 = $(srcdir)/config/obj-hp300.h $(srcdir)/config/obj-aout.h \ |
2257 | $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h | |
2258 | DEP_m88k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m88k.h \ | |
403487ec AM |
2259 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/m88k.h \ |
2260 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2261 | DEP_m88k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2262 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2263 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h | |
252b5132 | 2264 | DEP_mcore_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mcore.h \ |
403487ec AM |
2265 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/mcore.h \ |
2266 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2267 | DEP_mcore_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2268 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2269 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h | |
252b5132 | 2270 | DEP_mips_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mips.h \ |
403487ec AM |
2271 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/mipspe.h \ |
2272 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
252b5132 RH |
2273 | DEP_mips_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-mips.h \ |
2274 | ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h | |
403487ec AM |
2275 | DEP_mips_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ |
2276 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2277 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h | |
dcc46170 HPN |
2278 | DEP_mmix_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ |
2279 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2280 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h | |
252b5132 | 2281 | DEP_mn10200_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10200.h \ |
403487ec AM |
2282 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2283 | $(INCDIR)/bfdlink.h | |
2284 | DEP_mn10200_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2285 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2286 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h | |
252b5132 | 2287 | DEP_mn10300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10300.h \ |
403487ec AM |
2288 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2289 | $(INCDIR)/bfdlink.h | |
2290 | DEP_mn10300_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2291 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2292 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h | |
2469cfa2 | 2293 | DEP_msp430_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-msp430.h \ |
f62ba8f2 AM |
2294 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2295 | $(INCDIR)/bfdlink.h | |
2296 | DEP_msp430_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2297 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2298 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-msp430.h | |
252b5132 RH |
2299 | DEP_ns32k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-ns32k.h \ |
2300 | $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h | |
2301 | DEP_ns32k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ns32k.h \ | |
403487ec AM |
2302 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2303 | $(INCDIR)/bfdlink.h | |
2304 | DEP_ns32k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2305 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2306 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h | |
3438adb3 | 2307 | DEP_openrisc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-openrisc.h \ |
403487ec AM |
2308 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2309 | $(INCDIR)/bfdlink.h | |
2310 | DEP_openrisc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2311 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2312 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h | |
ba323545 AM |
2313 | DEP_or32_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-or32.h \ |
2314 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/or32.h \ | |
2315 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2316 | DEP_or32_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2317 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2318 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-or32.h | |
e135f41b NC |
2319 | DEP_pdp11_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-pdp11.h \ |
2320 | $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h | |
27b7e12d | 2321 | DEP_pdp11_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-pdp11.h \ |
403487ec AM |
2322 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2323 | $(INCDIR)/bfdlink.h | |
2324 | DEP_pdp11_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2325 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2326 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h | |
041dd5a9 | 2327 | DEP_pj_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-pj.h \ |
403487ec | 2328 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
3817f222 | 2329 | $(INCDIR)/bfdlink.h |
403487ec AM |
2330 | DEP_pj_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ |
2331 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2332 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h | |
2333 | DEP_ppc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ppc.h \ | |
2334 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6000.h \ | |
2335 | $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2336 | DEP_ppc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2337 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2338 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h | |
27b7e12d | 2339 | DEP_s390_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-s390.h \ |
403487ec AM |
2340 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2341 | $(INCDIR)/bfdlink.h | |
2342 | DEP_s390_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2343 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2344 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h | |
252b5132 | 2345 | DEP_sh_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sh.h \ |
403487ec AM |
2346 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sh.h \ |
2347 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2348 | DEP_sh_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2349 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2350 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h | |
eb1e0e80 NC |
2351 | DEP_sh64_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ |
2352 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2353 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h \ | |
f0abc2a1 AM |
2354 | $(srcdir)/config/tc-sh.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \ |
2355 | $(BFDDIR)/elf32-sh64.h | |
252b5132 RH |
2356 | DEP_sparc_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-sparc.h \ |
2357 | $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h | |
2358 | DEP_sparc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sparc.h \ | |
403487ec AM |
2359 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sparc.h \ |
2360 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2361 | DEP_sparc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2362 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2363 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h | |
252b5132 RH |
2364 | DEP_tahoe_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tahoe.h \ |
2365 | $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h | |
2366 | DEP_tahoe_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tahoe.h \ | |
403487ec AM |
2367 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2368 | $(INCDIR)/bfdlink.h | |
2369 | DEP_tahoe_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2370 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2371 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h | |
252b5132 RH |
2372 | DEP_tic30_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tic30.h \ |
2373 | $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h | |
2374 | DEP_tic30_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic30.h \ | |
403487ec AM |
2375 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic30.h \ |
2376 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2377 | DEP_tic30_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2378 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2379 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic30.h | |
f62ba8f2 AM |
2380 | DEP_tic4x_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic4x.h \ |
2381 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic4x.h \ | |
da64f3bf | 2382 | $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h |
f62ba8f2 AM |
2383 | DEP_tic4x_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ |
2384 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
da64f3bf | 2385 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic4x.h |
01580992 | 2386 | DEP_tic54x_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic54x.h \ |
403487ec AM |
2387 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic54x.h \ |
2388 | $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2389 | DEP_tic54x_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2390 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2391 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic54x.h | |
252b5132 | 2392 | DEP_tic80_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic80.h \ |
403487ec AM |
2393 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic80.h \ |
2394 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2395 | DEP_tic80_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2396 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2397 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic80.h | |
252b5132 RH |
2398 | DEP_vax_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-vax.h \ |
2399 | $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h | |
2400 | DEP_vax_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-vax.h \ | |
403487ec AM |
2401 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ |
2402 | $(INCDIR)/bfdlink.h | |
2403 | DEP_vax_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2404 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2405 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h | |
252b5132 RH |
2406 | DEP_vax_vms = $(srcdir)/config/obj-vms.h $(srcdir)/config/tc-vax.h \ |
2407 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def | |
2408 | DEP_w65_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-w65.h \ | |
403487ec AM |
2409 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/w65.h \ |
2410 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2411 | DEP_w65_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2412 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2413 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h | |
252b5132 | 2414 | DEP_v850_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-v850.h \ |
8e42bcb6 AM |
2415 | $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/symcat.h \ |
2416 | $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
403487ec AM |
2417 | DEP_v850_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ |
2418 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
8e42bcb6 AM |
2419 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h \ |
2420 | $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h | |
c0ef99a7 AM |
2421 | DEP_xstormy16_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-xstormy16.h \ |
2422 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ | |
2423 | $(INCDIR)/bfdlink.h | |
2424 | DEP_xstormy16_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2425 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2426 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h | |
e0001a05 NC |
2427 | DEP_xtensa_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ |
2428 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2429 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xtensa.h \ | |
43cd72b9 | 2430 | $(INCDIR)/xtensa-isa.h $(INCDIR)/xtensa-config.h |
252b5132 | 2431 | DEP_z8k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-z8k.h \ |
403487ec AM |
2432 | $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/z8k.h \ |
2433 | $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h | |
2434 | DEP_z8k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \ | |
2435 | $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
2436 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h | |
252b5132 | 2437 | DEP_hppa_som = $(BFDDIR)/som.h |
16adf844 AM |
2438 | DEP_i386_multi = $(DEP_i386_aout) $(DEP_i386_coff) \ |
2439 | $(DEP_i386_elf) | |
252b5132 RH |
2440 | DEP_mips_multi = $(DEP_mips_coff) $(DEP_mips_ecoff) \ |
2441 | $(DEP_mips_elf) | |
3bcbcc3d | 2442 | DEP_cris_multi = $(DEP_cris_aout) $(DEP_cris_elf) |
ad4d6ccf AM |
2443 | BMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE. |
2444 | #MKDEP DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW. | |
403487ec AM |
2445 | app.o: app.c $(INCDIR)/symcat.h |
2446 | as.o: as.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h \ | |
54cfded0 AM |
2447 | output-file.h sb.h macro.h dwarf2dbg.h dw2gencfi.h \ |
2448 | $(INCDIR)/elf/dwarf2.h $(BFDVER_H) | |
403487ec AM |
2449 | atof-generic.o: atof-generic.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h |
2450 | bignum-copy.o: bignum-copy.c $(INCDIR)/symcat.h | |
2451 | cond.o: cond.c $(INCDIR)/symcat.h macro.h sb.h $(INCDIR)/obstack.h | |
2452 | depend.o: depend.c $(INCDIR)/symcat.h | |
2453 | dwarf2dbg.o: dwarf2dbg.c $(INCDIR)/symcat.h dwarf2dbg.h \ | |
8ea2b00f AM |
2454 | $(INCDIR)/filenames.h subsegs.h $(INCDIR)/obstack.h \ |
2455 | $(INCDIR)/elf/dwarf2.h | |
54cfded0 AM |
2456 | dw2gencfi.o: dw2gencfi.c $(INCDIR)/symcat.h dw2gencfi.h \ |
2457 | $(INCDIR)/elf/dwarf2.h | |
403487ec AM |
2458 | ecoff.o: ecoff.c $(INCDIR)/symcat.h ecoff.h |
2459 | ehopt.o: ehopt.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h \ | |
1581f8c9 | 2460 | $(INCDIR)/elf/dwarf2.h |
403487ec AM |
2461 | expr.o: expr.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \ |
2462 | $(INCDIR)/obstack.h | |
2463 | flonum-copy.o: flonum-copy.c $(INCDIR)/symcat.h | |
ad4d6ccf AM |
2464 | flonum-konst.o: flonum-konst.c |
2465 | flonum-mult.o: flonum-mult.c | |
403487ec AM |
2466 | frags.o: frags.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h |
2467 | hash.o: hash.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \ | |
2468 | $(INCDIR)/obstack.h | |
dcc46170 HPN |
2469 | input-file.o: input-file.c $(INCDIR)/symcat.h input-file.h \ |
2470 | $(INCDIR)/safe-ctype.h | |
403487ec AM |
2471 | input-scrub.o: input-scrub.c $(INCDIR)/symcat.h input-file.h \ |
2472 | sb.h | |
8e42bcb6 AM |
2473 | listing.o: listing.c $(INCDIR)/symcat.h $(INCDIR)/obstack.h \ |
2474 | $(INCDIR)/safe-ctype.h input-file.h subsegs.h | |
403487ec | 2475 | literal.o: literal.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h |
3c55da70 AM |
2476 | macro.o: macro.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \ |
2477 | sb.h macro.h | |
403487ec AM |
2478 | messages.o: messages.c $(INCDIR)/symcat.h |
2479 | output-file.o: output-file.c $(INCDIR)/symcat.h output-file.h | |
2480 | read.o: read.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \ | |
54cfded0 AM |
2481 | subsegs.h $(INCDIR)/obstack.h sb.h macro.h ecoff.h \ |
2482 | dw2gencfi.h $(INCDIR)/elf/dwarf2.h | |
ad4d6ccf | 2483 | sb.o: sb.c sb.h |
403487ec AM |
2484 | stabs.o: stabs.c $(INCDIR)/symcat.h $(INCDIR)/obstack.h \ |
2485 | subsegs.h ecoff.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def | |
2486 | subsegs.o: subsegs.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h | |
2487 | symbols.o: symbols.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \ | |
2488 | $(INCDIR)/obstack.h subsegs.h struc-symbol.h | |
2489 | write.o: write.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h \ | |
2490 | output-file.h dwarf2dbg.h | |
403487ec AM |
2491 | itbl-ops.o: itbl-ops.c itbl-ops.h $(INCDIR)/symcat.h |
2492 | e-crisaout.o: $(srcdir)/config/e-crisaout.c $(INCDIR)/symcat.h \ | |
2493 | emul-target.h | |
2494 | e-criself.o: $(srcdir)/config/e-criself.c $(INCDIR)/symcat.h \ | |
2495 | emul-target.h | |
2496 | e-i386aout.o: $(srcdir)/config/e-i386aout.c $(INCDIR)/symcat.h \ | |
2497 | emul-target.h | |
2498 | e-i386coff.o: $(srcdir)/config/e-i386coff.c $(INCDIR)/symcat.h \ | |
2499 | emul-target.h | |
2500 | e-i386elf.o: $(srcdir)/config/e-i386elf.c $(INCDIR)/symcat.h \ | |
2501 | emul-target.h | |
2502 | e-mipsecoff.o: $(srcdir)/config/e-mipsecoff.c $(INCDIR)/symcat.h \ | |
2503 | emul-target.h | |
2504 | e-mipself.o: $(srcdir)/config/e-mipself.c $(INCDIR)/symcat.h \ | |
2505 | emul-target.h | |
252b5132 | 2506 | $(OBJS): $(DEP_@target_cpu_type@_@obj_format@) |
04ad1543 ILT |
2507 | $(TARG_CPU_O): $(DEPTC_@target_cpu_type@_@obj_format@) |
2508 | $(OBJ_FORMAT_O): $(DEPOBJ_@target_cpu_type@_@obj_format@) | |
ad4d6ccf | 2509 | #MKDEP DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE. |