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