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