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