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