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