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