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