Thu Jan 29 14:42:44 1998 Pat Rankin <rankin@eql.caltech.edu>
[binutils-gdb.git] / gas / Makefile.in
1 # Makefile.in generated automatically by automake 1.2 from Makefile.am
2
3 # Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
4 # This Makefile.in is free software; the Free Software Foundation
5 # gives unlimited permission to copy, distribute and modify it.
6
7
8 SHELL = @SHELL@
9
10 srcdir = @srcdir@
11 top_srcdir = @top_srcdir@
12 VPATH = @srcdir@
13 prefix = @prefix@
14 exec_prefix = @exec_prefix@
15
16 bindir = @bindir@
17 sbindir = @sbindir@
18 libexecdir = @libexecdir@
19 datadir = @datadir@
20 sysconfdir = @sysconfdir@
21 sharedstatedir = @sharedstatedir@
22 localstatedir = @localstatedir@
23 libdir = @libdir@
24 infodir = @infodir@
25 mandir = @mandir@
26 includedir = @includedir@
27 oldincludedir = /usr/include
28
29 pkgdatadir = $(datadir)/@PACKAGE@
30 pkglibdir = $(libdir)/@PACKAGE@
31 pkgincludedir = $(includedir)/@PACKAGE@
32
33 top_builddir = .
34
35 ACLOCAL = @ACLOCAL@
36 AUTOCONF = @AUTOCONF@
37 AUTOMAKE = @AUTOMAKE@
38 AUTOHEADER = @AUTOHEADER@
39
40 INSTALL = @INSTALL@
41 INSTALL_PROGRAM = @INSTALL_PROGRAM@
42 INSTALL_DATA = @INSTALL_DATA@
43 INSTALL_SCRIPT = @INSTALL_SCRIPT@
44 transform = @program_transform_name@
45
46 NORMAL_INSTALL = true
47 PRE_INSTALL = true
48 POST_INSTALL = true
49 NORMAL_UNINSTALL = true
50 PRE_UNINSTALL = true
51 POST_UNINSTALL = true
52 build_alias = @build_alias@
53 build_triplet = @build@
54 host_alias = @host_alias@
55 host_triplet = @host@
56 target_alias = @target_alias@
57 target_triplet = @target@
58 ALL_OBJ_DEPS = @ALL_OBJ_DEPS@
59 BFDLIB = @BFDLIB@
60 CC = @CC@
61 EXEEXT = @EXEEXT@
62 LD = @LD@
63 LIBTOOL = @LIBTOOL@
64 LN_S = @LN_S@
65 MAINT = @MAINT@
66 MAKEINFO = @MAKEINFO@
67 OPCODES_LIB = @OPCODES_LIB@
68 PACKAGE = @PACKAGE@
69 RANLIB = @RANLIB@
70 VERSION = @VERSION@
71 atof = @atof@
72 extra_objects = @extra_objects@
73 obj_format = @obj_format@
74 target_cpu_type = @target_cpu_type@
75 te_file = @te_file@
76
77 AUTOMAKE_OPTIONS = dejagnu
78
79 SUBDIRS = doc
80
81 tooldir = $(exec_prefix)/$(target_alias)
82
83 YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi`
84 LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
85
86 DEP = mkdep
87
88 TARG_CPU = @target_cpu_type@
89 TARG_CPU_C = $(srcdir)/config/tc-@target_cpu_type@.c
90 TARG_CPU_O = tc-@target_cpu_type@.o
91 TARG_CPU_H = $(srcdir)/config/tc-@target_cpu_type@.h
92 OBJ_FORMAT_C = $(srcdir)/config/obj-@obj_format@.c
93 OBJ_FORMAT_O = obj-@obj_format@.o
94 OBJ_FORMAT_H = $(srcdir)/config/obj-@obj_format@.h
95 TARG_ENV_H = $(srcdir)/config/te-@te_file@.h
96 ATOF_TARG_C = $(srcdir)/config/atof-@atof@.c
97 ATOF_TARG_O = atof-@atof@.o
98
99 # use @target_cpu_type@ for refering to configured target name
100 IT_HDRS=itbl-parse.h $(srcdir)/itbl-ops.h
101 IT_SRCS=itbl-parse.c itbl-lex.c $(srcdir)/itbl-ops.c
102 IT_DEPS=$(srcdir)/itbl-parse.y $(srcdir)/itbl-lex.l $(srcdir)/config/itbl-@target_cpu_type@.h
103 IT_OBJS=itbl-parse.o itbl-lex.o itbl-ops.o
104
105 # CPU types. This is only used for dependency information.
106
107 CPU_TYPES = \
108 a29k \
109 alpha \
110 arc \
111 arm \
112 d10v \
113 h8300 \
114 h8500 \
115 hppa \
116 i386 \
117 i860 \
118 i960 \
119 m32r \
120 m68k \
121 m88k \
122 mips \
123 mn10200 \
124 mn10300 \
125 ns32k \
126 ppc \
127 sh \
128 sparc \
129 tahoe \
130 vax \
131 w65 \
132 v850 \
133 z8k
134
135 # Object format types. This is only used for dependency information.
136 # We deliberately omit som, since it does not work as a cross assembler.
137
138 OBJ_FORMATS = \
139 aout \
140 bout \
141 coff \
142 ecoff \
143 elf \
144 evax \
145 hp300 \
146 ieee \
147 vms
148
149 # This is an sh case which sets valid according to whether the CPU
150 # type in the shell variable c and the OS type in the shell variable o
151 # are supported. This helps cuts down on the amount of dependency
152 # information.
153
154 CPU_OBJ_VALID = \
155 valid= ; \
156 case $$o in \
157 aout) \
158 case $$c in \
159 a29k | arm | i386 | i860 | m68k | mips | ns32k | sparc | tahoe | vax) \
160 valid=yes ;; \
161 esac ;; \
162 bout) \
163 case $$c in \
164 i960) valid=yes ;; \
165 esac ;; \
166 coff) valid=yes ;; \
167 ecoff) \
168 case $$c in \
169 mips | alpha) valid=yes ;; \
170 esac ;; \
171 elf) valid=yes ;; \
172 evax) \
173 case $$c in \
174 alpha) valid=yes ;; \
175 esac ;; \
176 hp300) \
177 case $$c in \
178 m68k) valid=yes ;; \
179 esac ;; \
180 vms) \
181 case $$c in \
182 vax) valid=yes ;; \
183 esac ;; \
184 esac;
185
186 # This is like CPU_OBJ_VALID, for the obj=multi case.
187
188 CPU_MULTI_VALID = \
189 valid= ; \
190 case $$c in \
191 i386 | mips) valid=yes ;; \
192 esac;
193
194 # Regular source files.
195
196 GAS_CFILES = \
197 app.c \
198 as.c \
199 atof-generic.c \
200 bignum-copy.c \
201 cond.c \
202 depend.c \
203 ecoff.c \
204 expr.c \
205 flonum-copy.c \
206 flonum-konst.c \
207 flonum-mult.c \
208 frags.c \
209 hash.c \
210 input-file.c \
211 input-scrub.c \
212 listing.c \
213 literal.c \
214 macro.c \
215 messages.c \
216 output-file.c \
217 read.c \
218 sb.c \
219 stabs.c \
220 subsegs.c \
221 symbols.c \
222 write.c
223
224 CFILES = $(GAS_CFILES) gasp.c itbl-ops.c
225
226 HFILES = \
227 as.h \
228 bignum.h \
229 bit_fix.h \
230 ecoff.h \
231 emul-target.h \
232 emul.h \
233 expr.h \
234 flonum.h \
235 frags.h \
236 hash.h \
237 input-file.h \
238 itbl-ops.h \
239 listing.h \
240 macro.h \
241 obj.h \
242 output-file.h \
243 read.h \
244 sb.h \
245 struc-symbol.h \
246 subsegs.h \
247 symbols.h \
248 tc.h \
249 write.h
250
251 # CPU files in config.
252
253 TARGET_CPU_CFILES = \
254 config/tc-a29k.c \
255 config/tc-alpha.c \
256 config/tc-arc.c \
257 config/tc-arm.c \
258 config/tc-d10v.c \
259 config/tc-h8300.c \
260 config/tc-h8500.c \
261 config/tc-hppa.c \
262 config/tc-i386.c \
263 config/tc-i860.c \
264 config/tc-i960.c \
265 config/tc-m32r.c \
266 config/tc-m68k.c \
267 config/tc-m88k.c \
268 config/tc-mips.c \
269 config/tc-mn10200.c \
270 config/tc-mn10300.c \
271 config/tc-ns32k.c \
272 config/tc-ppc.c \
273 config/tc-sh.c \
274 config/tc-sparc.c \
275 config/tc-tahoe.c \
276 config/tc-vax.c \
277 config/tc-w65.c \
278 config/tc-v850.c \
279 config/tc-z8k.c
280
281 TARGET_CPU_HFILES = \
282 config/tc-a29k.h \
283 config/tc-alpha.h \
284 config/tc-arc.h \
285 config/tc-arm.h \
286 config/tc-d10v.h \
287 config/tc-h8300.h \
288 config/tc-h8500.h \
289 config/tc-hppa.h \
290 config/tc-i386.h \
291 config/tc-i860.h \
292 config/tc-i960.h \
293 config/tc-m32r.h \
294 config/tc-m68k.h \
295 config/tc-m88k.h \
296 config/tc-mips.h \
297 config/tc-mn10200.h \
298 config/tc-mn10300.h \
299 config/tc-ns32k.h \
300 config/tc-ppc.h \
301 config/tc-sh.h \
302 config/tc-sparc.h \
303 config/tc-tahoe.h \
304 config/tc-vax.h \
305 config/tc-w65.h \
306 config/tc-v850.h \
307 config/tc-z8k.h
308
309 # OBJ files in config
310
311 OBJ_FORMAT_CFILES = \
312 config/obj-aout.c \
313 config/obj-bout.c \
314 config/obj-coff.c \
315 config/obj-ecoff.c \
316 config/obj-elf.c \
317 config/obj-evax.c \
318 config/obj-hp300.c \
319 config/obj-ieee.c \
320 config/obj-som.c \
321 config/obj-vms.c
322
323 OBJ_FORMAT_HFILES = \
324 config/obj-aout.h \
325 config/obj-bout.h \
326 config/obj-coff.h \
327 config/obj-ecoff.h \
328 config/obj-elf.h \
329 config/obj-evax.h \
330 config/obj-hp300.h \
331 config/obj-ieee.h \
332 config/obj-som.h \
333 config/obj-vms.h
334
335 # Emulation header files in config
336
337 TARG_ENV_HFILES = \
338 config/te-386bsd.h \
339 config/te-aux.h \
340 config/te-delta.h \
341 config/te-delt88.h \
342 config/te-dpx2.h \
343 config/te-dynix.h \
344 config/te-generic.h \
345 config/te-go32.h \
346 config/te-hp300.h \
347 config/te-hppa.h \
348 config/te-i386aix.h \
349 config/te-ic960.h \
350 config/te-linux.h \
351 config/te-lnews.h \
352 config/te-lynx.h \
353 config/te-mach.h \
354 config/te-macos.h \
355 config/te-multi.h \
356 config/te-nbsd.h \
357 config/te-nbsd532.h \
358 config/te-pc532mach.h \
359 config/te-pe.h \
360 config/te-ppcnw.h \
361 config/te-psos.h \
362 config/te-riscix.h \
363 config/te-sparcaout.h \
364 config/te-sun3.h \
365 config/te-svr4.h \
366 config/te-sysv32.h
367
368 # Multi files in config
369
370 MULTI_CFILES = \
371 config/e-i386coff.c \
372 config/e-i386elf.c \
373 config/e-mipsecoff.c \
374 config/e-mipself.c
375
376 CONFIG_OBJS = \
377 $(TARG_CPU_O) \
378 $(OBJ_FORMAT_O) \
379 $(ATOF_TARG_O) \
380 $(extra_objects)
381
382 GENERIC_OBJS = \
383 app.o \
384 as.o \
385 atof-generic.o \
386 bignum-copy.o \
387 cond.o \
388 depend.o \
389 expr.o \
390 flonum-konst.o \
391 flonum-copy.o \
392 flonum-mult.o \
393 frags.o \
394 hash.o \
395 input-file.o \
396 input-scrub.o \
397 literal.o \
398 messages.o \
399 output-file.o \
400 read.o \
401 subsegs.o \
402 symbols.o \
403 write.o \
404 listing.o \
405 ecoff.o \
406 stabs.o \
407 sb.o \
408 macro.o
409
410 OBJS = $(CONFIG_OBJS) $(GENERIC_OBJS)
411
412 noinst_PROGRAMS = as-new gasp-new
413 noinst_SCRIPTS = .gdbinit
414
415 EXTRA_DIST = make-gas.com
416
417 # Now figure out from those variables how to compile and link.
418
419 BASEDIR = $(srcdir)/..
420 BFDDIR = $(BASEDIR)/bfd
421 INCDIR = $(BASEDIR)/include
422
423 # This is the variable actually used when we compile.
424 # Specify the directories to be searched for header files.
425 # Both . and srcdir are used, in that order,
426 # so that tm.h and config.h will be found in the compilation
427 # subdirectory rather than in the source directory.
428 INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(srcdir)/config -I$(INCDIR) -I$(srcdir)/.. -I$(BFDDIR)
429
430 # How to link with both our special library facilities
431 # and the system's installed libraries.
432
433 GASLIBS = @OPCODES_LIB@ @BFDLIB@ ../libiberty/libiberty.a
434
435 # Files to be copied away after each stage in building.
436 STAGESTUFF = *.o $(noinst_PROGRAMS)
437
438 as_new_SOURCES = $(GAS_CFILES)
439 as_new_LDADD = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
440 $(extra_objects) $(GASLIBS)
441 as_new_DEPENDENCIES = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
442 $(extra_objects) $(GASLIBS)
443
444 gasp_new_SOURCES = gasp.c macro.c sb.c hash.c
445 gasp_new_LDADD = ../libiberty/libiberty.a
446
447 EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
448 echo $${rootme}/../expect/expect ; \
449 else echo expect ; fi`
450
451 RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
452 echo $${srcdir}/../dejagnu/runtest ; else echo runtest; \
453 fi`
454 RUNTESTFLAGS=
455
456 # The m68k operand parser.
457
458 EXTRA_as_new_SOURCES = config/m68k-parse.y
459
460 # stand-alone itbl assembler & disassembler
461
462 EXTRA_PROGRAMS = itbl-test
463 itbl_test_SOURCES = itbl-parse.y itbl-lex.l
464 itbl_test_LDADD = itbl-test-ops.o itbl-test.o $(GASLIBS) @LEXLIB@
465
466 # Remake the info files.
467
468 MOSTLYCLEANFILES = $(STAGESTUFF) core stamp-mk.com \
469 testsuite/*.o testsuite/*.out testsuite/gas.log testsuite/gas.sum \
470 testsuite/site.exp site.bak site.exp stage stage1 stage2
471
472 CLEANFILES = dep.sed .tcdep .objdep .dep2 .dep1 .depa .dep .depdir
473
474 DISTCLEANFILES = targ-cpu.h obj-format.h targ-env.h itbl-cpu.h cgen-opc.h
475
476 against=stage2
477
478 # Automatic dependency computation. This is a real pain, because the
479 # dependencies change based on target_cpu_type and obj_format. We
480 # currently ignore any dependencies caused by emulation files.
481
482 DEP_FILE_DEPS = $(CFILES) $(HFILES) $(TARGET_CPU_CFILES) \
483 $(TARGET_CPU_HFILES) $(OBJ_FORMAT_CFILES) $(OBJ_FORMAT_HFILES)
484
485 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
486 TCDEP_a29k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-a29k.h \
487 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/a29k.h
488 TCDEP_a29k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-a29k.h \
489 $(INCDIR)/coff/internal.h $(INCDIR)/coff/a29k.h $(BFDDIR)/libcoff.h \
490 $(INCDIR)/bfdlink.h $(INCDIR)/opcode/a29k.h
491 TCDEP_a29k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
492 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
493 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h $(INCDIR)/opcode/a29k.h
494 TCDEP_alpha_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-alpha.h \
495 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
496 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/alpha.h \
497 $(srcdir)/config/atof-vax.c
498 TCDEP_alpha_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-alpha.h \
499 ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
500 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/alpha.h \
501 $(srcdir)/config/atof-vax.c
502 TCDEP_alpha_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
503 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
504 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h subsegs.h \
505 $(INCDIR)/obstack.h $(INCDIR)/opcode/alpha.h $(INCDIR)/elf/alpha.h \
506 $(srcdir)/config/atof-vax.c
507 TCDEP_alpha_evax = $(srcdir)/config/obj-evax.h $(srcdir)/config/tc-alpha.h \
508 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/alpha.h \
509 $(srcdir)/config/atof-vax.c
510 TCDEP_arc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arc.h \
511 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
512 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/arc.h \
513 $(INCDIR)/elf/arc.h
514 TCDEP_arc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
515 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
516 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h subsegs.h \
517 $(INCDIR)/obstack.h $(INCDIR)/opcode/arc.h $(INCDIR)/elf/arc.h
518 TCDEP_arm_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-arm.h \
519 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h
520 TCDEP_arm_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arm.h \
521 $(INCDIR)/coff/internal.h $(INCDIR)/coff/arm.h $(BFDDIR)/libcoff.h \
522 $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h
523 TCDEP_arm_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
524 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
525 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h subsegs.h \
526 $(INCDIR)/obstack.h
527 TCDEP_d10v_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-d10v.h \
528 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
529 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/d10v.h \
530 $(INCDIR)/elf/ppc.h
531 TCDEP_d10v_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
532 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
533 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h subsegs.h \
534 $(INCDIR)/obstack.h $(INCDIR)/opcode/d10v.h $(INCDIR)/elf/ppc.h
535 TCDEP_h8300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8300.h \
536 $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8300.h $(BFDDIR)/libcoff.h \
537 $(INCDIR)/bfdlink.h $(INCDIR)/opcode/h8300.h
538 TCDEP_h8300_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
539 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
540 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h $(INCDIR)/opcode/h8300.h
541 TCDEP_h8500_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8500.h \
542 $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8500.h $(BFDDIR)/libcoff.h \
543 $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/h8500-opc.h
544 TCDEP_h8500_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
545 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
546 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h subsegs.h \
547 $(INCDIR)/obstack.h $(srcdir)/../opcodes/h8500-opc.h
548 TCDEP_hppa_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-hppa.h \
549 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
550 subsegs.h $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(BFDDIR)/libbfd.h \
551 $(INCDIR)/opcode/hppa.h
552 TCDEP_hppa_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
553 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
554 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h $(BFDDIR)/elf32-hppa.h \
555 $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h subsegs.h \
556 $(INCDIR)/obstack.h $(BFDDIR)/libbfd.h $(INCDIR)/opcode/hppa.h
557 TCDEP_i386_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i386.h \
558 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
559 $(INCDIR)/opcode/i386.h
560 TCDEP_i386_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i386.h \
561 $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h $(BFDDIR)/libcoff.h \
562 $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/i386.h
563 TCDEP_i386_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
564 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
565 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h subsegs.h \
566 $(INCDIR)/obstack.h $(INCDIR)/opcode/i386.h
567 TCDEP_i860_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i860.h \
568 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/i860.h
569 TCDEP_i860_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i860.h \
570 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
571 $(INCDIR)/opcode/i860.h
572 TCDEP_i860_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
573 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
574 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h $(INCDIR)/opcode/i860.h
575 TCDEP_i960_bout = $(srcdir)/config/obj-bout.h $(srcdir)/config/tc-i960.h \
576 $(INCDIR)/obstack.h $(INCDIR)/opcode/i960.h
577 TCDEP_i960_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i960.h \
578 $(INCDIR)/coff/internal.h $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h \
579 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h $(INCDIR)/opcode/i960.h
580 TCDEP_i960_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
581 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
582 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h $(INCDIR)/obstack.h \
583 $(INCDIR)/opcode/i960.h
584 TCDEP_m32r_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m32r.h \
585 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
586 subsegs.h $(INCDIR)/obstack.h cgen-opc.h $(srcdir)/../opcodes/m32r-opc.h \
587 $(INCDIR)/opcode/cgen.h
588 TCDEP_m32r_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
589 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
590 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h subsegs.h \
591 $(INCDIR)/obstack.h cgen-opc.h $(srcdir)/../opcodes/m32r-opc.h \
592 $(INCDIR)/opcode/cgen.h
593 TCDEP_m68k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
594 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
595 subsegs.h $(INCDIR)/opcode/m68k.h $(srcdir)/config/m68k-parse.h
596 TCDEP_m68k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68k.h \
597 $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(BFDDIR)/libcoff.h \
598 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h $(INCDIR)/opcode/m68k.h \
599 $(srcdir)/config/m68k-parse.h
600 TCDEP_m68k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
601 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
602 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h $(INCDIR)/obstack.h \
603 subsegs.h $(INCDIR)/opcode/m68k.h $(srcdir)/config/m68k-parse.h
604 TCDEP_m68k_hp300 = $(srcdir)/config/obj-hp300.h $(srcdir)/config/obj-aout.h \
605 $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
606 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/opcode/m68k.h \
607 $(srcdir)/config/m68k-parse.h
608 TCDEP_m88k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m88k.h \
609 $(INCDIR)/coff/internal.h $(INCDIR)/coff/m88k.h $(BFDDIR)/libcoff.h \
610 $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/config/m88k-opcode.h
611 TCDEP_m88k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
612 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
613 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h subsegs.h \
614 $(INCDIR)/obstack.h $(srcdir)/config/m88k-opcode.h
615 TCDEP_mips_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-mips.h \
616 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
617 $(INCDIR)/opcode/mips.h itbl-ops.h ecoff.h $(INCDIR)/coff/sym.h \
618 $(INCDIR)/coff/ecoff.h
619 TCDEP_mips_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mips.h \
620 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
621 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mips.h \
622 itbl-ops.h ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
623 TCDEP_mips_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-mips.h \
624 ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
625 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mips.h \
626 itbl-ops.h
627 TCDEP_mips_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
628 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
629 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h subsegs.h \
630 $(INCDIR)/obstack.h $(INCDIR)/opcode/mips.h itbl-ops.h \
631 $(INCDIR)/elf/mips.h ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
632 TCDEP_mn10200_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10200.h \
633 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
634 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10200.h
635 TCDEP_mn10200_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
636 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
637 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h subsegs.h \
638 $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10200.h
639 TCDEP_mn10300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10300.h \
640 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
641 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10300.h
642 TCDEP_mn10300_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
643 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
644 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h subsegs.h \
645 $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10300.h
646 TCDEP_ns32k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-ns32k.h \
647 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ns32k.h \
648 $(INCDIR)/obstack.h
649 TCDEP_ns32k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ns32k.h \
650 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
651 $(INCDIR)/opcode/ns32k.h $(INCDIR)/obstack.h
652 TCDEP_ns32k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
653 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
654 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h $(INCDIR)/opcode/ns32k.h \
655 $(INCDIR)/obstack.h
656 TCDEP_ppc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ppc.h \
657 $(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h \
658 $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/ppc.h
659 TCDEP_ppc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
660 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
661 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h subsegs.h \
662 $(INCDIR)/obstack.h $(INCDIR)/opcode/ppc.h $(INCDIR)/elf/ppc.h
663 TCDEP_sh_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sh.h \
664 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sh.h $(BFDDIR)/libcoff.h \
665 $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/sh-opc.h
666 TCDEP_sh_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
667 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
668 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h subsegs.h \
669 $(INCDIR)/obstack.h $(srcdir)/../opcodes/sh-opc.h
670 TCDEP_sparc_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-sparc.h \
671 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
672 $(INCDIR)/opcode/sparc.h
673 TCDEP_sparc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sparc.h \
674 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sparc.h $(BFDDIR)/libcoff.h \
675 $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/sparc.h
676 TCDEP_sparc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
677 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
678 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h subsegs.h \
679 $(INCDIR)/obstack.h $(INCDIR)/opcode/sparc.h
680 TCDEP_tahoe_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tahoe.h \
681 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
682 $(INCDIR)/opcode/tahoe.h
683 TCDEP_tahoe_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tahoe.h \
684 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
685 $(INCDIR)/obstack.h $(INCDIR)/opcode/tahoe.h
686 TCDEP_tahoe_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
687 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
688 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h $(INCDIR)/obstack.h \
689 $(INCDIR)/opcode/tahoe.h
690 TCDEP_vax_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-vax.h \
691 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(srcdir)/config/vax-inst.h \
692 $(INCDIR)/obstack.h $(INCDIR)/opcode/vax.h
693 TCDEP_vax_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-vax.h \
694 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
695 $(srcdir)/config/vax-inst.h $(INCDIR)/obstack.h $(INCDIR)/opcode/vax.h
696 TCDEP_vax_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
697 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
698 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h $(srcdir)/config/vax-inst.h \
699 $(INCDIR)/obstack.h $(INCDIR)/opcode/vax.h
700 TCDEP_vax_vms = $(srcdir)/config/obj-vms.h $(srcdir)/config/tc-vax.h \
701 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(srcdir)/config/vax-inst.h \
702 $(INCDIR)/obstack.h $(INCDIR)/opcode/vax.h
703 TCDEP_w65_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-w65.h \
704 $(INCDIR)/coff/internal.h $(INCDIR)/coff/w65.h $(BFDDIR)/libcoff.h \
705 $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/w65-opc.h
706 TCDEP_w65_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
707 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
708 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h subsegs.h \
709 $(INCDIR)/obstack.h $(srcdir)/../opcodes/w65-opc.h
710 TCDEP_v850_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-v850.h \
711 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
712 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/v850.h
713 TCDEP_v850_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
714 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
715 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h subsegs.h \
716 $(INCDIR)/obstack.h $(INCDIR)/opcode/v850.h
717 TCDEP_z8k_coff = $(srcdir)/../opcodes/z8k-opc.h $(srcdir)/config/obj-coff.h \
718 $(srcdir)/config/tc-z8k.h $(INCDIR)/coff/internal.h \
719 $(INCDIR)/coff/z8k.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
720 TCDEP_z8k_elf = $(srcdir)/../opcodes/z8k-opc.h $(srcdir)/config/obj-elf.h \
721 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
722 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h
723 TCDEP_hppa_som = $(srcdir)/config/tc-hppa.h subsegs.h \
724 $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h \
725 $(BFDDIR)/som.h
726 TCDEP_i386_multi = $(TCDEP_i386_coff) $(TCDEP_i386_elf)
727 TCDEP_mips_multi = $(TCDEP_mips_coff) $(TCDEP_mips_ecoff) \
728 $(TCDEP_mips_elf)
729 OBJDEP_a29k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-a29k.h \
730 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
731 $(INCDIR)/obstack.h
732 OBJDEP_a29k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-a29k.h \
733 $(INCDIR)/coff/internal.h $(INCDIR)/coff/a29k.h $(BFDDIR)/libcoff.h \
734 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
735 OBJDEP_a29k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
736 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
737 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h subsegs.h \
738 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
739 OBJDEP_alpha_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-alpha.h \
740 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
741 $(INCDIR)/obstack.h subsegs.h
742 OBJDEP_alpha_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-alpha.h \
743 ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
744 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
745 $(BFDDIR)/libecoff.h
746 OBJDEP_alpha_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
747 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
748 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h subsegs.h \
749 $(INCDIR)/obstack.h ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
750 $(INCDIR)/aout/aout64.h
751 OBJDEP_alpha_evax = $(srcdir)/config/obj-evax.h $(srcdir)/config/tc-alpha.h
752 OBJDEP_arc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arc.h \
753 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
754 $(INCDIR)/obstack.h subsegs.h
755 OBJDEP_arc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
756 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
757 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h subsegs.h \
758 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
759 OBJDEP_arm_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-arm.h \
760 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
761 $(INCDIR)/obstack.h
762 OBJDEP_arm_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arm.h \
763 $(INCDIR)/coff/internal.h $(INCDIR)/coff/arm.h $(BFDDIR)/libcoff.h \
764 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
765 OBJDEP_arm_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
766 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
767 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h subsegs.h \
768 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
769 OBJDEP_d10v_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-d10v.h \
770 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
771 $(INCDIR)/obstack.h subsegs.h
772 OBJDEP_d10v_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
773 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
774 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h subsegs.h \
775 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
776 OBJDEP_h8300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8300.h \
777 $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8300.h $(BFDDIR)/libcoff.h \
778 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
779 OBJDEP_h8300_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
780 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
781 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h subsegs.h \
782 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
783 OBJDEP_h8500_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8500.h \
784 $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8500.h $(BFDDIR)/libcoff.h \
785 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
786 OBJDEP_h8500_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
787 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
788 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h subsegs.h \
789 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
790 OBJDEP_hppa_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-hppa.h \
791 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
792 $(INCDIR)/obstack.h subsegs.h
793 OBJDEP_hppa_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
794 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
795 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h $(BFDDIR)/elf32-hppa.h \
796 $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h subsegs.h \
797 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
798 OBJDEP_i386_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i386.h \
799 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
800 $(INCDIR)/obstack.h
801 OBJDEP_i386_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i386.h \
802 $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h $(BFDDIR)/libcoff.h \
803 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
804 OBJDEP_i386_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
805 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
806 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h subsegs.h \
807 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
808 OBJDEP_i860_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i860.h \
809 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
810 $(INCDIR)/obstack.h
811 OBJDEP_i860_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i860.h \
812 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
813 $(INCDIR)/obstack.h subsegs.h
814 OBJDEP_i860_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
815 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
816 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h subsegs.h \
817 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
818 OBJDEP_i960_bout = $(srcdir)/config/obj-bout.h $(srcdir)/config/tc-i960.h \
819 $(INCDIR)/obstack.h
820 OBJDEP_i960_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i960.h \
821 $(INCDIR)/coff/internal.h $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h \
822 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
823 OBJDEP_i960_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
824 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
825 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h subsegs.h \
826 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
827 OBJDEP_m32r_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m32r.h \
828 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
829 $(INCDIR)/obstack.h subsegs.h
830 OBJDEP_m32r_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
831 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
832 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h subsegs.h \
833 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
834 OBJDEP_m68k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
835 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
836 $(INCDIR)/obstack.h
837 OBJDEP_m68k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68k.h \
838 $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(BFDDIR)/libcoff.h \
839 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
840 OBJDEP_m68k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
841 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
842 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h subsegs.h \
843 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
844 OBJDEP_m68k_hp300 = $(srcdir)/config/obj-aout.c $(srcdir)/config/obj-hp300.h \
845 $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
846 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
847 $(INCDIR)/obstack.h
848 OBJDEP_m88k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m88k.h \
849 $(INCDIR)/coff/internal.h $(INCDIR)/coff/m88k.h $(BFDDIR)/libcoff.h \
850 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
851 OBJDEP_m88k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
852 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
853 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h subsegs.h \
854 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
855 OBJDEP_mips_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-mips.h \
856 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
857 $(INCDIR)/obstack.h
858 OBJDEP_mips_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mips.h \
859 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
860 $(INCDIR)/obstack.h subsegs.h
861 OBJDEP_mips_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-mips.h \
862 ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
863 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
864 $(BFDDIR)/libecoff.h
865 OBJDEP_mips_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
866 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
867 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h subsegs.h \
868 $(INCDIR)/obstack.h ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
869 $(INCDIR)/elf/mips.h $(INCDIR)/aout/aout64.h
870 OBJDEP_mn10200_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10200.h \
871 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
872 $(INCDIR)/obstack.h subsegs.h
873 OBJDEP_mn10200_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
874 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
875 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h subsegs.h \
876 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
877 OBJDEP_mn10300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10300.h \
878 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
879 $(INCDIR)/obstack.h subsegs.h
880 OBJDEP_mn10300_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
881 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
882 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h subsegs.h \
883 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
884 OBJDEP_ns32k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-ns32k.h \
885 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
886 $(INCDIR)/obstack.h
887 OBJDEP_ns32k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ns32k.h \
888 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
889 $(INCDIR)/obstack.h subsegs.h
890 OBJDEP_ns32k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
891 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
892 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h subsegs.h \
893 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
894 OBJDEP_ppc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ppc.h \
895 $(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h \
896 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
897 OBJDEP_ppc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
898 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
899 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h subsegs.h \
900 $(INCDIR)/obstack.h $(INCDIR)/elf/ppc.h $(INCDIR)/aout/aout64.h
901 OBJDEP_sh_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sh.h \
902 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sh.h $(BFDDIR)/libcoff.h \
903 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
904 OBJDEP_sh_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
905 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
906 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h subsegs.h \
907 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
908 OBJDEP_sparc_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-sparc.h \
909 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
910 $(INCDIR)/obstack.h
911 OBJDEP_sparc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sparc.h \
912 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sparc.h $(BFDDIR)/libcoff.h \
913 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
914 OBJDEP_sparc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
915 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
916 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h subsegs.h \
917 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
918 OBJDEP_tahoe_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tahoe.h \
919 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
920 $(INCDIR)/obstack.h
921 OBJDEP_tahoe_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tahoe.h \
922 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
923 $(INCDIR)/obstack.h subsegs.h
924 OBJDEP_tahoe_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
925 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
926 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h subsegs.h \
927 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
928 OBJDEP_vax_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-vax.h \
929 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
930 $(INCDIR)/obstack.h
931 OBJDEP_vax_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-vax.h \
932 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
933 $(INCDIR)/obstack.h subsegs.h
934 OBJDEP_vax_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
935 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
936 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h subsegs.h \
937 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
938 OBJDEP_vax_vms = $(srcdir)/config/obj-vms.h $(srcdir)/config/tc-vax.h \
939 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def subsegs.h \
940 $(INCDIR)/obstack.h
941 OBJDEP_w65_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-w65.h \
942 $(INCDIR)/coff/internal.h $(INCDIR)/coff/w65.h $(BFDDIR)/libcoff.h \
943 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
944 OBJDEP_w65_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
945 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
946 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h subsegs.h \
947 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
948 OBJDEP_v850_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-v850.h \
949 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
950 $(INCDIR)/obstack.h subsegs.h
951 OBJDEP_v850_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
952 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
953 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h subsegs.h \
954 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
955 OBJDEP_z8k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-z8k.h \
956 $(INCDIR)/coff/internal.h $(INCDIR)/coff/z8k.h $(BFDDIR)/libcoff.h \
957 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
958 OBJDEP_z8k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
959 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
960 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h subsegs.h \
961 $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
962 OBJDEP_hppa_som = $(srcdir)/config/obj-som.h subsegs.h \
963 $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(BFDDIR)/som.h \
964 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
965 OBJDEP_i386_multi = $(OBJDEP_i386_coff) $(OBJDEP_i386_elf)
966 OBJDEP_mips_multi = $(OBJDEP_mips_coff) $(OBJDEP_mips_ecoff) \
967 $(OBJDEP_mips_elf)
968 DEP_a29k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-a29k.h \
969 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
970 DEP_a29k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-a29k.h \
971 $(INCDIR)/coff/internal.h $(INCDIR)/coff/a29k.h $(BFDDIR)/libcoff.h \
972 $(INCDIR)/bfdlink.h
973 DEP_a29k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
974 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
975 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h
976 DEP_alpha_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-alpha.h \
977 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
978 DEP_alpha_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-alpha.h \
979 ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
980 DEP_alpha_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
981 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
982 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h
983 DEP_alpha_evax = $(srcdir)/config/obj-evax.h $(srcdir)/config/tc-alpha.h
984 DEP_arc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arc.h \
985 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
986 DEP_arc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
987 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
988 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h
989 DEP_arm_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-arm.h \
990 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
991 DEP_arm_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arm.h \
992 $(INCDIR)/coff/internal.h $(INCDIR)/coff/arm.h $(BFDDIR)/libcoff.h \
993 $(INCDIR)/bfdlink.h
994 DEP_arm_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
995 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
996 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h
997 DEP_d10v_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-d10v.h \
998 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
999 DEP_d10v_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1000 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1001 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h
1002 DEP_h8300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8300.h \
1003 $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8300.h $(BFDDIR)/libcoff.h \
1004 $(INCDIR)/bfdlink.h
1005 DEP_h8300_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1006 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1007 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h
1008 DEP_h8500_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8500.h \
1009 $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8500.h $(BFDDIR)/libcoff.h \
1010 $(INCDIR)/bfdlink.h
1011 DEP_h8500_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1012 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1013 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h
1014 DEP_hppa_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-hppa.h \
1015 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
1016 DEP_hppa_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1017 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1018 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h $(BFDDIR)/elf32-hppa.h \
1019 $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h
1020 DEP_i386_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i386.h \
1021 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
1022 DEP_i386_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i386.h \
1023 $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h $(BFDDIR)/libcoff.h \
1024 $(INCDIR)/bfdlink.h
1025 DEP_i386_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1026 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1027 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h
1028 DEP_i860_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i860.h \
1029 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
1030 DEP_i860_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i860.h \
1031 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
1032 DEP_i860_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1033 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1034 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h
1035 DEP_i960_bout = $(srcdir)/config/obj-bout.h $(srcdir)/config/tc-i960.h
1036 DEP_i960_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i960.h \
1037 $(INCDIR)/coff/internal.h $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h \
1038 $(INCDIR)/bfdlink.h
1039 DEP_i960_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1040 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1041 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h
1042 DEP_m32r_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m32r.h \
1043 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
1044 DEP_m32r_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1045 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1046 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h
1047 DEP_m68k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
1048 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
1049 DEP_m68k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68k.h \
1050 $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(BFDDIR)/libcoff.h \
1051 $(INCDIR)/bfdlink.h
1052 DEP_m68k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1053 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1054 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h
1055 DEP_m68k_hp300 = $(srcdir)/config/obj-hp300.h $(srcdir)/config/obj-aout.h \
1056 $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
1057 DEP_m88k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m88k.h \
1058 $(INCDIR)/coff/internal.h $(INCDIR)/coff/m88k.h $(BFDDIR)/libcoff.h \
1059 $(INCDIR)/bfdlink.h
1060 DEP_m88k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1061 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1062 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h
1063 DEP_mips_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-mips.h \
1064 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
1065 DEP_mips_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mips.h \
1066 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
1067 DEP_mips_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-mips.h \
1068 ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
1069 DEP_mips_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1070 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1071 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h
1072 DEP_mn10200_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10200.h \
1073 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
1074 DEP_mn10200_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1075 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1076 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h
1077 DEP_mn10300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10300.h \
1078 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
1079 DEP_mn10300_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1080 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1081 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h
1082 DEP_ns32k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-ns32k.h \
1083 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
1084 DEP_ns32k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ns32k.h \
1085 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
1086 DEP_ns32k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1087 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1088 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h
1089 DEP_ppc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ppc.h \
1090 $(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h \
1091 $(INCDIR)/bfdlink.h
1092 DEP_ppc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1093 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1094 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h
1095 DEP_sh_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sh.h \
1096 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sh.h $(BFDDIR)/libcoff.h \
1097 $(INCDIR)/bfdlink.h
1098 DEP_sh_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1099 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1100 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h
1101 DEP_sparc_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-sparc.h \
1102 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
1103 DEP_sparc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sparc.h \
1104 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sparc.h $(BFDDIR)/libcoff.h \
1105 $(INCDIR)/bfdlink.h
1106 DEP_sparc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1107 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1108 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h
1109 DEP_tahoe_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tahoe.h \
1110 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
1111 DEP_tahoe_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tahoe.h \
1112 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
1113 DEP_tahoe_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1114 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1115 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h
1116 DEP_vax_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-vax.h \
1117 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
1118 DEP_vax_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-vax.h \
1119 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
1120 DEP_vax_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1121 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1122 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h
1123 DEP_vax_vms = $(srcdir)/config/obj-vms.h $(srcdir)/config/tc-vax.h \
1124 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
1125 DEP_w65_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-w65.h \
1126 $(INCDIR)/coff/internal.h $(INCDIR)/coff/w65.h $(BFDDIR)/libcoff.h \
1127 $(INCDIR)/bfdlink.h
1128 DEP_w65_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1129 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1130 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h
1131 DEP_v850_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-v850.h \
1132 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
1133 DEP_v850_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1134 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1135 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h
1136 DEP_z8k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-z8k.h \
1137 $(INCDIR)/coff/internal.h $(INCDIR)/coff/z8k.h $(BFDDIR)/libcoff.h \
1138 $(INCDIR)/bfdlink.h
1139 DEP_z8k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1140 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1141 $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h
1142 DEP_hppa_som = $(BFDDIR)/som.h
1143 DEP_i386_multi = $(DEP_i386_coff) $(DEP_i386_elf)
1144 DEP_mips_multi = $(DEP_mips_coff) $(DEP_mips_ecoff) \
1145 $(DEP_mips_elf)
1146 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
1147 mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
1148 CONFIG_HEADER = config.h
1149 CONFIG_CLEAN_FILES = .gdbinit
1150 noinst_PROGRAMS = as-new$(EXEEXT) gasp-new$(EXEEXT)
1151 PROGRAMS = $(noinst_PROGRAMS)
1152
1153
1154 DEFS = @DEFS@ -I. -I$(srcdir) -I.
1155 CPPFLAGS = @CPPFLAGS@
1156 LDFLAGS = @LDFLAGS@
1157 LIBS = @LIBS@
1158 itbl_test_OBJECTS = itbl-parse.o itbl-lex.o
1159 itbl_test_DEPENDENCIES = itbl-test-ops.o itbl-test.o \
1160 ../libiberty/libiberty.a
1161 itbl_test_LDFLAGS =
1162 as_new_OBJECTS = app.o as.o atof-generic.o bignum-copy.o cond.o \
1163 depend.o ecoff.o expr.o flonum-copy.o flonum-konst.o flonum-mult.o \
1164 frags.o hash.o input-file.o input-scrub.o listing.o literal.o macro.o \
1165 messages.o output-file.o read.o sb.o stabs.o subsegs.o symbols.o \
1166 write.o
1167 as_new_LDFLAGS =
1168 gasp_new_OBJECTS = gasp.o macro.o sb.o hash.o
1169 gasp_new_DEPENDENCIES = ../libiberty/libiberty.a
1170 gasp_new_LDFLAGS =
1171 SCRIPTS = $(noinst_SCRIPTS)
1172
1173 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
1174 LEXLIB = @LEXLIB@
1175 YLWRAP = $(top_srcdir)/../ylwrap
1176 CFLAGS = @CFLAGS@
1177 COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
1178 LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
1179 LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@
1180 DIST_COMMON = README COPYING ChangeLog Makefile.am Makefile.in NEWS \
1181 acconfig.h acinclude.m4 aclocal.m4 config.in config/m68k-parse.c \
1182 configure configure.in gdbinit.in itbl-lex.c itbl-parse.c stamp-h.in
1183
1184
1185 DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
1186
1187 TAR = tar
1188 GZIP = --best
1189 SOURCES = $(itbl_test_SOURCES) $(as_new_SOURCES) $(EXTRA_as_new_SOURCES) $(gasp_new_SOURCES)
1190 OBJECTS = $(itbl_test_OBJECTS) $(as_new_OBJECTS) $(gasp_new_OBJECTS)
1191
1192 default: all
1193
1194 .SUFFIXES:
1195 .SUFFIXES: .S .c .h .l .lo .o .s .y
1196 $(srcdir)/Makefile.in: @MAINT@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
1197 cd $(top_srcdir) && $(AUTOMAKE) --cygnus Makefile
1198
1199 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
1200 cd $(top_builddir) \
1201 && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
1202
1203 $(ACLOCAL_M4): @MAINT@ configure.in acinclude.m4
1204 cd $(srcdir) && $(ACLOCAL)
1205
1206 config.status: $(srcdir)/configure
1207 $(SHELL) ./config.status --recheck
1208 $(srcdir)/configure: @MAINT@$(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
1209 cd $(srcdir) && $(AUTOCONF)
1210
1211 config.h: stamp-h ; @:
1212 stamp-h: $(srcdir)/config.in $(top_builddir)/config.status
1213 cd $(top_builddir) \
1214 && CONFIG_FILES= CONFIG_HEADERS=config.h:config.in \
1215 $(SHELL) ./config.status
1216 @echo timestamp > stamp-h
1217 $(srcdir)/config.in: @MAINT@$(srcdir)/stamp-h.in
1218 $(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h
1219 cd $(top_srcdir) && $(AUTOHEADER)
1220 @echo timestamp > $(srcdir)/stamp-h.in
1221
1222 mostlyclean-hdr:
1223
1224 clean-hdr:
1225
1226 distclean-hdr:
1227 rm -f config.h
1228
1229 maintainer-clean-hdr:
1230 .gdbinit: $(top_builddir)/config.status gdbinit.in
1231 cd $(top_builddir) && CONFIG_FILES=$@:gdbinit.in CONFIG_HEADERS= ./config.status
1232
1233 mostlyclean-noinstPROGRAMS:
1234
1235 clean-noinstPROGRAMS:
1236 test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
1237
1238 distclean-noinstPROGRAMS:
1239
1240 maintainer-clean-noinstPROGRAMS:
1241
1242 .s.o:
1243 $(COMPILE) -c $<
1244
1245 .S.o:
1246 $(COMPILE) -c $<
1247
1248 .c.o:
1249 $(COMPILE) -c $<
1250
1251 mostlyclean-compile:
1252 rm -f *.o core
1253
1254 clean-compile:
1255
1256 distclean-compile:
1257 rm -f *.tab.c
1258
1259 maintainer-clean-compile:
1260
1261 .c.lo:
1262 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
1263
1264 # These are just copies of the above rule.
1265 .s.lo:
1266 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
1267
1268 .S.lo:
1269 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
1270
1271 mostlyclean-libtool:
1272 rm -f *.lo
1273
1274 clean-libtool:
1275 rm -rf .libs
1276
1277 distclean-libtool:
1278
1279 maintainer-clean-libtool:
1280
1281 itbl-test$(EXEEXT): $(itbl_test_OBJECTS) $(itbl_test_DEPENDENCIES)
1282 @rm -f itbl-test$(EXEEXT)
1283 $(LINK) $(itbl_test_LDFLAGS) $(itbl_test_OBJECTS) $(itbl_test_LDADD) $(LIBS)
1284
1285 as-new$(EXEEXT): $(as_new_OBJECTS) $(as_new_DEPENDENCIES)
1286 @rm -f as-new$(EXEEXT)
1287 $(LINK) $(as_new_LDFLAGS) $(as_new_OBJECTS) $(as_new_LDADD) $(LIBS)
1288
1289 gasp-new$(EXEEXT): $(gasp_new_OBJECTS) $(gasp_new_DEPENDENCIES)
1290 @rm -f gasp-new$(EXEEXT)
1291 $(LINK) $(gasp_new_LDFLAGS) $(gasp_new_OBJECTS) $(gasp_new_LDADD) $(LIBS)
1292 .y.c:
1293 $(SHELL) $(YLWRAP) "$(YACC)" $< y.tab.c $*.c y.tab.h $*.h -- $(YFLAGS)
1294 .y.h:
1295 $(SHELL) $(YLWRAP) "$(YACC)" $< y.tab.c $*.c y.tab.h $*.h -- $(YFLAGS)
1296 .l.c:
1297 $(LEX) $(LFLAGS) $< && mv $(LEX_OUTPUT_ROOT).c $@
1298
1299 # This directory's subdirectories are mostly independent; you can cd
1300 # into them and run `make' without going through this Makefile.
1301 # To change the values of `make' variables: instead of editing Makefiles,
1302 # (1) if the variable is set in `config.status', edit `config.status'
1303 # (which will cause the Makefiles to be regenerated when you run `make');
1304 # (2) otherwise, pass the desired values on the `make' command line.
1305
1306 @SET_MAKE@
1307
1308 all-recursive install-data-recursive install-exec-recursive \
1309 installdirs-recursive install-recursive uninstall-recursive install-info-recursive \
1310 check-recursive installcheck-recursive info-recursive dvi-recursive:
1311 @set fnord $(MAKEFLAGS); amf=$$2; \
1312 for subdir in $(SUBDIRS); do \
1313 target=`echo $@ | sed s/-recursive//`; \
1314 echo "Making $$target in $$subdir"; \
1315 (cd $$subdir && $(MAKE) $$target) \
1316 || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
1317 done && test -z "$$fail"
1318
1319 mostlyclean-recursive clean-recursive distclean-recursive \
1320 maintainer-clean-recursive:
1321 @set fnord $(MAKEFLAGS); amf=$$2; \
1322 rev=''; for subdir in $(SUBDIRS); do rev="$$rev $$subdir"; done; \
1323 for subdir in $$rev; do \
1324 target=`echo $@ | sed s/-recursive//`; \
1325 echo "Making $$target in $$subdir"; \
1326 (cd $$subdir && $(MAKE) $$target) \
1327 || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
1328 done && test -z "$$fail"
1329 tags-recursive:
1330 list='$(SUBDIRS)'; for subdir in $$list; do \
1331 (cd $$subdir && $(MAKE) tags); \
1332 done
1333
1334 tags: TAGS
1335
1336 ID: $(HEADERS) $(SOURCES)
1337 here=`pwd` && cd $(srcdir) && mkid -f$$here/ID $(SOURCES) $(HEADERS)
1338
1339 TAGS: tags-recursive $(HEADERS) $(SOURCES) config.in $(TAGS_DEPENDENCIES)
1340 tags=; \
1341 here=`pwd`; \
1342 list='$(SUBDIRS)'; for subdir in $$list; do \
1343 test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
1344 done; \
1345 test -z "$(ETAGS_ARGS)config.in$(SOURCES)$(HEADERS)$$tags" \
1346 || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags config.in $(SOURCES) $(HEADERS) -o $$here/TAGS)
1347
1348 mostlyclean-tags:
1349
1350 clean-tags:
1351
1352 distclean-tags:
1353 rm -f TAGS ID
1354
1355 maintainer-clean-tags:
1356
1357 distdir = $(PACKAGE)-$(VERSION)
1358 top_distdir = $(distdir)
1359
1360 # This target untars the dist file and tries a VPATH configuration. Then
1361 # it guarantees that the distribution is self-contained by making another
1362 # tarfile.
1363 distcheck: dist
1364 rm -rf $(distdir)
1365 GZIP=$(GZIP) $(TAR) zxf $(distdir).tar.gz
1366 mkdir $(distdir)/=build
1367 mkdir $(distdir)/=inst
1368 dc_install_base=`cd $(distdir)/=inst && pwd`; \
1369 cd $(distdir)/=build \
1370 && ../configure --srcdir=.. --prefix=$$dc_install_base \
1371 && $(MAKE) \
1372 && $(MAKE) dvi \
1373 && $(MAKE) check \
1374 && $(MAKE) install \
1375 && $(MAKE) installcheck \
1376 && $(MAKE) dist
1377 rm -rf $(distdir)
1378 @echo "========================"; \
1379 echo "$(distdir).tar.gz is ready for distribution"; \
1380 echo "========================"
1381 dist: distdir
1382 -chmod -R a+r $(distdir)
1383 GZIP=$(GZIP) $(TAR) chozf $(distdir).tar.gz $(distdir)
1384 rm -rf $(distdir)
1385 dist-all: distdir
1386 -chmod -R a+r $(distdir)
1387 GZIP=$(GZIP) $(TAR) chozf $(distdir).tar.gz $(distdir)
1388 rm -rf $(distdir)
1389 distdir: $(DISTFILES)
1390 rm -rf $(distdir)
1391 mkdir $(distdir)
1392 -chmod 777 $(distdir)
1393 @for file in $(DISTFILES); do \
1394 if test -f $$file; then d=.; else d=$(srcdir); fi; \
1395 test -f $(distdir)/$$file \
1396 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
1397 || cp -p $$d/$$file $(distdir)/$$file; \
1398 done
1399 for subdir in $(SUBDIRS); do \
1400 test -d $(distdir)/$$subdir \
1401 || mkdir $(distdir)/$$subdir \
1402 || exit 1; \
1403 chmod 777 $(distdir)/$$subdir; \
1404 (cd $$subdir && $(MAKE) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \
1405 || exit 1; \
1406 done
1407
1408 DEJATOOL = $(PACKAGE)
1409 site.exp: Makefile
1410 @echo 'Making a new site.exp file...'
1411 -@rm -f site.bak
1412 @echo '## these variables are automatically generated by make ##' > $@-t
1413 @echo '# Do not edit here. If you wish to override these values' >> $@-t
1414 @echo '# edit the last section' >> $@-t
1415 @echo 'set tool $(DEJATOOL)' >> $@-t
1416 @echo 'set srcdir $(srcdir)' >> $@-t
1417 @echo 'set objdir' `pwd` >> $@-t
1418 @echo 'set host_alias $(host_alias)' >> $@-t
1419 @echo 'set host_triplet $(host_triplet)' >> $@-t
1420 @echo 'set target_alias $(target_alias)' >> $@-t
1421 @echo 'set target_triplet $(target_triplet)' >> $@-t
1422 @echo 'set build_alias $(build_alias)' >> $@-t
1423 @echo 'set build_triplet $(build_triplet)' >> $@-t
1424 @echo '## All variables above are generated by configure. Do Not Edit ##' >> $@-t
1425 -@sed '1,/^## All variables above are.*##/ d' site.bak >> $@-t
1426 -@mv site.exp site.bak
1427 @mv $@-t site.exp
1428 info: info-recursive
1429 dvi: dvi-recursive
1430 check: all-am
1431 $(MAKE) check-recursive check-DEJAGNU
1432 installcheck: installcheck-recursive
1433 install-info: install-info-recursive
1434 all-recursive-am: config.h
1435 $(MAKE) all-recursive
1436
1437 all-am: Makefile $(PROGRAMS) $(SCRIPTS) config.h
1438
1439 install-exec-am: install-exec-local
1440
1441 install-exec: install-exec-recursive install-exec-am
1442 @$(NORMAL_INSTALL)
1443
1444 install-data: install-data-recursive
1445 @$(NORMAL_INSTALL)
1446
1447 install: install-recursive install-exec-am
1448 @:
1449
1450 uninstall: uninstall-recursive
1451
1452 all: all-recursive-am all-am
1453
1454 install-strip:
1455 $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install
1456 installdirs: installdirs-recursive
1457
1458
1459 mostlyclean-generic:
1460 test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
1461
1462 clean-generic:
1463 test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
1464
1465 distclean-generic:
1466 rm -f Makefile $(DISTCLEANFILES)
1467 rm -f config.cache config.log stamp-h stamp-h[0-9]*
1468 test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1469
1470 maintainer-clean-generic:
1471 test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
1472 test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
1473 mostlyclean-am: mostlyclean-hdr mostlyclean-noinstPROGRAMS \
1474 mostlyclean-compile mostlyclean-libtool \
1475 mostlyclean-tags mostlyclean-generic
1476
1477 clean-am: clean-hdr clean-noinstPROGRAMS clean-compile clean-libtool \
1478 clean-tags clean-generic mostlyclean-am
1479
1480 distclean-am: distclean-hdr distclean-noinstPROGRAMS distclean-compile \
1481 distclean-libtool distclean-tags distclean-generic \
1482 clean-am
1483
1484 maintainer-clean-am: maintainer-clean-hdr \
1485 maintainer-clean-noinstPROGRAMS \
1486 maintainer-clean-compile maintainer-clean-libtool \
1487 maintainer-clean-tags maintainer-clean-generic \
1488 distclean-am
1489
1490 mostlyclean: mostlyclean-recursive mostlyclean-am
1491
1492 clean: clean-recursive clean-am
1493
1494 distclean: distclean-recursive distclean-am
1495 rm -f config.status
1496 rm -f libtool
1497
1498 maintainer-clean: maintainer-clean-recursive maintainer-clean-am
1499 @echo "This command is intended for maintainers to use;"
1500 @echo "it deletes files that may require special tools to rebuild."
1501 rm -f config.status
1502
1503 .PHONY: default mostlyclean-hdr distclean-hdr clean-hdr \
1504 maintainer-clean-hdr mostlyclean-noinstPROGRAMS \
1505 distclean-noinstPROGRAMS clean-noinstPROGRAMS \
1506 maintainer-clean-noinstPROGRAMS mostlyclean-compile distclean-compile \
1507 clean-compile maintainer-clean-compile mostlyclean-libtool \
1508 distclean-libtool clean-libtool maintainer-clean-libtool \
1509 install-data-recursive uninstall-data-recursive install-exec-recursive \
1510 uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
1511 all-recursive check-recursive installcheck-recursive info-recursive \
1512 dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
1513 maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
1514 distclean-tags clean-tags maintainer-clean-tags distdir check-DEJAGNU \
1515 info dvi installcheck install-info all-recursive-am all-am \
1516 install-exec-am install-exec install-data install uninstall all \
1517 installdirs mostlyclean-generic distclean-generic clean-generic \
1518 maintainer-clean-generic clean mostlyclean distclean maintainer-clean
1519
1520
1521 $(srcdir)/make-gas.com: stamp-mk.com
1522 stamp-mk.com: vmsconf.sh Makefile
1523 sh $(srcdir)/vmsconf.sh $(GENERIC_OBJS) > new-make.com
1524 $(SHELL) $(srcdir)/../move-if-change new-make.com $(srcdir)/make-gas.com
1525 touch stamp-mk.com
1526
1527 $(OBJS): @ALL_OBJ_DEPS@
1528
1529 # Stuff that every object file depends upon. If anything is removed
1530 # from this list, remove it from dep-in.sed as well.
1531 $(OBJS): config.h as.h $(TARG_ENV_H) $(OBJ_FORMAT_H) $(TARG_CPU_H) flonum.h \
1532 expr.h struc-symbol.h write.h frags.h hash.h read.h symbols.h tc.h \
1533 obj.h listing.h bignum.h bit_fix.h $(INCDIR)/libiberty.h
1534
1535 check-DEJAGNU: site.exp
1536 if [ -d testsuite ]; then \
1537 true; \
1538 else \
1539 mkdir testsuite; \
1540 fi
1541 rm -f testsuite/site.exp
1542 cp site.exp testsuite/site.exp
1543 rootme=`pwd`; export rootme; \
1544 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
1545 EXPECT=${EXPECT} ; export EXPECT ; \
1546 if [ -f $(top_builddir)/../expect/expect ]; then \
1547 TCL_LIBRARY=`cd $(top_srcdir)/../tcl/library && pwd`; \
1548 export TCL_LIBRARY; \
1549 fi; \
1550 runtest=$(RUNTEST); \
1551 cd testsuite; \
1552 if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
1553 $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
1554 $(RUNTESTFLAGS); \
1555 else echo "WARNING: could not find \`runtest'" 1>&2; :;\
1556 fi
1557
1558 # The implicit .c.o rule doesn't work for these, perhaps because of
1559 # the variables, or perhaps because the sources are not on vpath.
1560 $(TARG_CPU_O): $(TARG_CPU_C) $(TARG_CPU_DEP_@target_cpu_type@)
1561 $(COMPILE) -c $(TARG_CPU_C)
1562 $(ATOF_TARG_O): $(ATOF_TARG_C)
1563 $(COMPILE) -c $(ATOF_TARG_C)
1564
1565 # ecoff.c only has full dependencies when ECOFF_DEBUGGING is defined,
1566 # so the automatic dependency stuff doesn't work.
1567 ecoff.o : ecoff.c ecoff.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
1568 $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/symconst.h \
1569 $(INCDIR)/aout/stab_gnu.h
1570
1571 # We need all these explicit rules for the multi stuff. Because of
1572 # these rules, we don't need one for OBJ_FORMAT_O.
1573
1574 obj-aout.o : $(srcdir)/config/obj-aout.c
1575 $(COMPILE) -c $(srcdir)/config/obj-aout.c
1576 obj-bout.o : $(srcdir)/config/obj-bout.c
1577 $(COMPILE) -c $(srcdir)/config/obj-bout.c
1578 obj-coff.o: $(srcdir)/config/obj-coff.c
1579 $(COMPILE) -c $(srcdir)/config/obj-coff.c
1580 obj-ecoff.o : $(srcdir)/config/obj-ecoff.c
1581 $(COMPILE) -c $(srcdir)/config/obj-ecoff.c
1582 obj-elf.o : $(srcdir)/config/obj-elf.c
1583 $(COMPILE) -c $(srcdir)/config/obj-elf.c
1584 obj-evax.o : $(srcdir)/config/obj-evax.c
1585 $(COMPILE) -c $(srcdir)/config/obj-evax.c
1586 obj-hp300.o : $(srcdir)/config/obj-hp300.c
1587 $(COMPILE) -c $(srcdir)/config/obj-hp300.c
1588 obj-ieee.o : $(srcdir)/config/obj-ieee.c
1589 $(COMPILE) -c $(srcdir)/config/obj-ieee.c
1590 obj-multi.o : $(srcdir)/config/obj-multi.c
1591 $(COMPILE) -c $(srcdir)/config/obj-multi.c
1592 obj-som.o : $(srcdir)/config/obj-som.c
1593 $(COMPILE) -c $(srcdir)/config/obj-som.c
1594 obj-vms.o : $(srcdir)/config/obj-vms.c
1595 $(COMPILE) -c $(srcdir)/config/obj-vms.c
1596
1597 e-mipself.o : $(srcdir)/config/e-mipself.c
1598 $(COMPILE) -c $(srcdir)/config/e-mipself.c
1599 e-mipsecoff.o : $(srcdir)/config/e-mipsecoff.c
1600 $(COMPILE) -c $(srcdir)/config/e-mipsecoff.c
1601 e-i386coff.o: $(srcdir)/config/e-i386coff.c
1602 $(COMPILE) -c $(srcdir)/config/e-i386coff.c
1603 e-i386elf.o: $(srcdir)/config/e-i386elf.c
1604 $(COMPILE) -c $(srcdir)/config/e-i386elf.c
1605
1606 m68k-parse.c: $(srcdir)/config/m68k-parse.y
1607 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/config/m68k-parse.y y.tab.c m68k-parse.c --
1608 m68k-parse.o: m68k-parse.c $(srcdir)/config/m68k-parse.h
1609
1610 # Don't let the .y.h rule clobber m68k-parse.h.
1611 m68k-parse.h: ; @true
1612 $(srcdir)/config/m68k-parse.h: ; @true
1613
1614 # The instruction table specification lexical analyzer and parser.
1615
1616 itbl-lex.c: $(srcdir)/itbl-lex.l
1617 itbl-lex.o: itbl-lex.c itbl-parse.h
1618
1619 itbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h
1620
1621 itbl-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
1622
1623 itbl-parse.c itbl-parse.h: $(srcdir)/itbl-parse.y
1624 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/itbl-parse.y y.tab.c itbl-parse.c y.tab.h itbl-parse.h -- -d
1625
1626 itbl-test-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
1627 $(COMPILE) -o itbl-test-ops.o -DSTAND_ALONE -c $(srcdir)/itbl-ops.c
1628
1629 itbl-test.o: $(srcdir)/testsuite/gas/all/itbl-test.c $(srcdir)/itbl-ops.h
1630 $(COMPILE) -c -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c
1631
1632 # CGEN interface.
1633
1634 cgen.o: cgen.c cgen-opc.h subsegs.h \
1635 $(INCDIR)/obstack.h $(INCDIR)/opcode/cgen.h \
1636 $(srcdir)/../opcodes/$(TARG_CPU)-opc.h
1637
1638 .PHONY: install-exec-local install-data-local
1639
1640 install-exec-local: $(noinst_PROGRAMS)
1641 $(mkinstalldirs) $(bindir) $(tooldir)/bin
1642 @list='$(noinst_PROGRAMS)'; for p in $$list; do \
1643 if test -f $$p; then \
1644 echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/-new//'|sed '$(transform)'`"; \
1645 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/-new//'|sed '$(transform)'`; \
1646 else :; fi; \
1647 done
1648 rm -f $(tooldir)/bin/as$(EXEEXT)
1649 n=`echo as | sed '$(transform)'`; \
1650 ln $(bindir)/$$n$(EXEEXT) $(tooldir)/bin/as$(EXEEXT) >/dev/null 2>/dev/null \
1651 || $(INSTALL_PROGRAM) as-new$(EXEEXT) $(tooldir)/bin/as$(EXEEXT)
1652
1653 # These exist for maintenance purposes.
1654
1655 .PHONY: bootstrap bootstrap2 bootstrap3 stage1 stage2 stage3 comparison
1656
1657 bootstrap: as-new
1658 $(MAKE) stage1
1659 rm -f stage && ln -s stage1 stage
1660 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
1661 $(MAKE) stage2
1662 rm -f stage && ln -s stage2 stage
1663 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
1664 $(MAKE) comparison against=stage2
1665
1666 bootstrap2:
1667 rm -f stage && ln -s stage1 stage
1668 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
1669 $(MAKE) stage2
1670 rm -f stage && ln -s stage2 stage
1671 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
1672 $(MAKE) comparison against=stage2
1673
1674 bootstrap3:
1675 rm -f stage && ln -s stage2 stage
1676 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
1677 $(MAKE) comparison against=stage2
1678
1679 # Copy the object files from a particular stage into a subdirectory.
1680 stage1:
1681 -mkdir stage1
1682 -mv $(STAGESTUFF) stage1
1683 if [ -f stage1/as-new$(EXEEXT) -a ! -f stage1/as$(EXEEXT) ] ; then (cd stage1 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
1684
1685 stage2:
1686 -mkdir stage2
1687 -mv $(STAGESTUFF) stage2
1688 if [ -f stage2/as-new$(EXEEXT) -a ! -f stage2/as$(EXEEXT) ] ; then (cd stage2 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
1689
1690 stage3:
1691 -mkdir stage3
1692 -mv $(STAGESTUFF) stage3
1693 if [ -f stage3/as-new$(EXEEXT) -a ! -f stage3/as$(EXEEXT) ] ; then (cd stage3 ; ln -s as-new as$(EXEEXT)) ; fi
1694
1695 # This rule is derived from corresponding code in the Makefile.in for gcc.
1696 # The "tail +16c" is to bypass headers which may include timestamps or
1697 # temporary assembly file names.
1698 comparison:
1699 x=0 ; \
1700 for file in *.o ; do \
1701 tail +16c ./$$file > tmp-foo1; \
1702 if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \
1703 if cmp tmp-foo1 tmp-foo2 ; then \
1704 true ; \
1705 else \
1706 echo $$file differs ; \
1707 x=1 ; \
1708 fi ; \
1709 else true; fi ; \
1710 done ; \
1711 exit $$x
1712 -rm -f tmp-foo*
1713
1714 .PHONY: de-stage1 de-stage2 de-stage3
1715
1716 de-stage1:
1717 - (cd stage1 ; rm -f as$(EXEEXT) ; mv -f * ..)
1718 - rmdir stage1
1719
1720 de-stage2:
1721 - (cd stage2 ; rm -f as$(EXEEXT) ; mv -f * ..)
1722 - rmdir stage2
1723
1724 de-stage3:
1725 - (cd stage3 ; rm -f as$(EXEEXT) ; mv -f * ..)
1726 - rmdir stage3
1727
1728 .dep: dep.sed $(DEP_FILE_DEPS) .tcdep .objdep .dep2
1729 rm -f .dep1
1730 $(MAKE) DEP=$(DEP) .dep1
1731 rm -rf .depdir
1732 sed -f dep.sed < .dep1 > .depa
1733 sed -f dep.sed < .tcdep >> .depa
1734 sed -f dep.sed < .objdep >> .depa
1735 sed -f dep.sed < .dep2 >> .depa
1736 echo '$$(OBJS): $$(DEP_@target''_cpu_type@_@obj''_format@)' >> .depa
1737 echo '$$(TARG_CPU_O): $$(TCDEP_@target''_cpu_type@_@obj''_format@)' >> .depa
1738 echo '$$(OBJ_FORMAT_O): $$(OBJDEP_@target''_cpu_type@_@obj''_format@)' >> .depa
1739 echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> .depa
1740 $(SHELL) $(srcdir)/../move-if-change .depa .dep
1741
1742 # This rule needs a mkdep that runs "gcc -MM".
1743 # FIXME: This only works correctly if $(srcdir) is an absolute path.
1744 .dep1: $(CFILES) $(MULTI_CFILES)
1745 if [ -d .depdir ]; then true; else mkdir .depdir; fi
1746 cd .depdir; \
1747 echo '' > targ-cpu.h; \
1748 echo '' > obj-format.h; \
1749 echo '' > targ-env.h; \
1750 echo '' > itbl-cpu.h; \
1751 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep; \
1752 $(DEP) -f .dep -DBFD_ASSEMBLER -I. -I.. -I$(srcdir) -I../../bfd $(INCLUDES) $?
1753 mv -f .depdir/.dep .dep1
1754
1755 # Work out the special dependencies for the tc-*.c files.
1756 .tcdep: $(TARGET_CPU_CFILES)
1757 rm -f .tcdepa
1758 if [ -d .depdir ]; then true; else mkdir .depdir; fi
1759 cd .depdir; \
1760 for c in $(CPU_TYPES); do \
1761 for o in $(OBJ_FORMATS); do \
1762 $(CPU_OBJ_VALID) \
1763 if [ x$${valid} = xyes ]; then \
1764 echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
1765 echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \
1766 echo '#include "te-generic.h"' > targ-env.h; \
1767 echo '' > itbl-cpu.h; \
1768 echo '#include "opcodes/'"$${c}"'-opc.h"' > cgen-opc.h; \
1769 rm -f dummy.c; \
1770 cp $(srcdir)/config/tc-$${c}.c dummy.c; \
1771 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep; \
1772 $(DEP) -f .dep -DBFD_ASSEMBLER -I. -I.. -I$(srcdir) -I../../bfd $(INCLUDES) dummy.c; \
1773 sed -e "s/dummy.o: dummy.c/TCDEP_$${c}_$${o} =/" \
1774 -e '1,/DO NOT PUT ANYTHING AFTER/d' \
1775 -e '/IF YOU PUT ANYTHING/,$$d' \
1776 -e '/^$$/d' < .dep >> ../.tcdepa; \
1777 rm -f dummy.c; \
1778 else true; fi; \
1779 done; \
1780 done
1781 echo 'TCDEP_hppa_som = $(srcdir)/config/tc-hppa.h subsegs.h \' >> .tcdepa
1782 echo ' $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h \' >> .tcdepa
1783 echo ' $(INCDIR)/opcode/hppa.h $(BFDDIR)/som.h' >> .tcdepa
1784 # We don't try to handle all multi cases.
1785 for c in $(CPU_TYPES); do \
1786 $(CPU_MULTI_VALID) \
1787 if [ x$${valid} = xyes ]; then \
1788 o=ecoff; \
1789 $(CPU_OBJ_VALID) \
1790 echo 'TCDEP_'"$${c}"'_multi = \' >> .tcdepa; \
1791 echo '$$(TCDEP_'"$${c}"'_coff) \' >> .tcdepa; \
1792 if [ x$${valid} = xyes ]; then \
1793 echo '$$(TCDEP_'"$${c}"'_ecoff) \' >> .tcdepa; \
1794 else true; fi; \
1795 echo '$$(TCDEP_'"$${c}"'_elf)' >> .tcdepa; \
1796 else true; fi; \
1797 done
1798 mv -f .tcdepa .tcdep
1799
1800 # Work out the special dependencies for the obj-*.c files.
1801 .objdep: $(OBJ_FORMAT_CFILES)
1802 rm -f .objdepa
1803 if [ -d .depdir ]; then true; else mkdir .depdir; fi
1804 cd .depdir; \
1805 for c in $(CPU_TYPES); do \
1806 for o in $(OBJ_FORMATS); do \
1807 $(CPU_OBJ_VALID) \
1808 if [ x$${valid} = xyes ]; then \
1809 echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
1810 echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \
1811 echo '#include "te-generic.h"' > targ-env.h; \
1812 echo '' > itbl-cpu.h; \
1813 rm -f dummy.c; \
1814 cp $(srcdir)/config/obj-$${o}.c dummy.c; \
1815 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep; \
1816 $(DEP) -f .dep -DBFD_ASSEMBLER -I. -I.. -I$(srcdir) -I../../bfd $(INCLUDES) dummy.c; \
1817 sed -e "s/dummy.o: dummy.c/OBJDEP_$${c}_$${o} =/" \
1818 -e '1,/DO NOT PUT ANYTHING AFTER/d' \
1819 -e '/IF YOU PUT ANYTHING/,$$d' \
1820 -e '/^$$/d' < .dep >> ../.objdepa; \
1821 rm -f dummy.c; \
1822 else true; fi; \
1823 done; \
1824 done
1825 echo 'OBJDEP_hppa_som = $(srcdir)/config/obj-som.h subsegs.h \' >> .objdepa
1826 echo ' $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h \' >> .objdepa
1827 echo ' $(BFDDIR)/som.h $(INCDIR)/aout/stab_gnu.h \' >> .objdepa
1828 echo ' $(INCDIR)/aout/stab.def' >> .objdepa
1829 # We don't try to handle all multi cases.
1830 for c in $(CPU_TYPES); do \
1831 $(CPU_MULTI_VALID) \
1832 if [ x$${valid} = xyes ]; then \
1833 o=ecoff; \
1834 $(CPU_OBJ_VALID) \
1835 echo 'OBJDEP_'"$${c}"'_multi = \' >> .objdepa; \
1836 echo '$$(OBJDEP_'"$${c}"'_coff) \' >> .objdepa; \
1837 if [ x$${valid} = xyes ]; then \
1838 echo '$$(OBJDEP_'"$${c}"'_ecoff) \' >> .objdepa; \
1839 else true; fi; \
1840 echo '$$(OBJDEP_'"$${c}"'_elf)' >> .objdepa; \
1841 else true; fi; \
1842 done
1843 mv -f .objdepa .objdep
1844
1845 # Work out the dependencies for each CPU/OBJ combination.
1846 # Note that SOM is a special case, because it only works native.
1847 # FIXME: This only works correctly if $(srcdir) is an absolute path.
1848 .dep2: $(TARGET_CPU_HFILES) $(OBJ_FORMAT_HFILES)
1849 rm -f .dep2a
1850 if [ -d .depdir ]; then true; else mkdir .depdir; fi
1851 cd .depdir; \
1852 for c in $(CPU_TYPES); do \
1853 for o in $(OBJ_FORMATS); do \
1854 $(CPU_OBJ_VALID) \
1855 if [ x$${valid} = xyes ]; then \
1856 echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
1857 echo '#include "obj-'"$${o}"'.h"' > dummy.c; \
1858 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep; \
1859 $(DEP) -f .dep -DBFD_ASSEMBLER -I. -I.. -I$(srcdir) -I../../bfd $(INCLUDES) dummy.c; \
1860 sed -e "s/dummy.o: dummy.c/DEP_$${c}_$${o} =/" \
1861 -e '1,/DO NOT PUT ANYTHING AFTER/d' \
1862 -e '/IF YOU PUT ANYTHING/,$$d' \
1863 -e '/^$$/d' < .dep >> ../.dep2a; \
1864 else true; fi; \
1865 done; \
1866 done
1867 echo 'DEP_hppa_som = $(srcdir)/../bfd/som.h' >> .dep2a
1868 # We don't try to handle all multi cases.
1869 for c in $(CPU_TYPES); do \
1870 $(CPU_MULTI_VALID) \
1871 if [ x$${valid} = xyes ]; then \
1872 o=ecoff; \
1873 $(CPU_OBJ_VALID) \
1874 echo 'DEP_'"$${c}"'_multi = \' >> .dep2a; \
1875 echo '$$(DEP_'"$${c}"'_coff) \' >> .dep2a; \
1876 if [ x$${valid} = xyes ]; then \
1877 echo '$$(DEP_'"$${c}"'_ecoff) \' >> .dep2a; \
1878 else true; fi; \
1879 echo '$$(DEP_'"$${c}"'_elf)' >> .dep2a; \
1880 else true; fi; \
1881 done
1882 mv -f .dep2a .dep2
1883
1884 dep.sed: dep-in.sed config.status
1885 sed <$(srcdir)/dep-in.sed >dep.sed \
1886 -e 's!@INCDIR@!$(INCDIR)!' \
1887 -e 's!@BFDDIR@!$(BFDDIR)!' \
1888 -e 's!@SRCDIR@!$(srcdir)!'
1889
1890 dep: .dep
1891 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
1892 cat .dep >> tmp-Makefile
1893 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
1894
1895 dep-in: .dep
1896 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
1897 cat .dep >> tmp-Makefile.in
1898 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
1899
1900 dep-am: .dep
1901 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
1902 cat .dep >> tmp-Makefile.am
1903 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
1904
1905 .PHONY: dep dep-in dep-am
1906
1907 # DO NOT DELETE THIS LINE -- mkdep uses it.
1908 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
1909
1910 app.o: app.c
1911 as.o: as.c subsegs.h $(INCDIR)/obstack.h output-file.h \
1912 sb.h macro.h
1913 atof-generic.o: atof-generic.c
1914 bignum-copy.o: bignum-copy.c
1915 cond.o: cond.c macro.h sb.h $(INCDIR)/obstack.h
1916 depend.o: depend.c
1917 ecoff.o: ecoff.c
1918 expr.o: expr.c $(INCDIR)/obstack.h
1919 flonum-copy.o: flonum-copy.c
1920 flonum-konst.o: flonum-konst.c
1921 flonum-mult.o: flonum-mult.c
1922 frags.o: frags.c subsegs.h $(INCDIR)/obstack.h
1923 hash.o: hash.c
1924 input-file.o: input-file.c input-file.h
1925 input-scrub.o: input-scrub.c input-file.h sb.h
1926 listing.o: listing.c input-file.h subsegs.h
1927 literal.o: literal.c subsegs.h $(INCDIR)/obstack.h
1928 macro.o: macro.c sb.h macro.h
1929 messages.o: messages.c
1930 output-file.o: output-file.c output-file.h
1931 read.o: read.c subsegs.h $(INCDIR)/obstack.h sb.h macro.h \
1932 ecoff.h
1933 sb.o: sb.c sb.h
1934 stabs.o: stabs.c $(INCDIR)/obstack.h subsegs.h ecoff.h \
1935 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
1936 subsegs.o: subsegs.c subsegs.h $(INCDIR)/obstack.h
1937 symbols.o: symbols.c $(INCDIR)/obstack.h subsegs.h
1938 write.o: write.c subsegs.h $(INCDIR)/obstack.h output-file.h
1939 gasp.o: gasp.c sb.h macro.h
1940 e-i386coff.o: $(srcdir)/config/e-i386coff.c emul.h \
1941 emul-target.h
1942 e-i386elf.o: $(srcdir)/config/e-i386elf.c emul.h emul-target.h
1943 e-mipsecoff.o: $(srcdir)/config/e-mipsecoff.c emul.h \
1944 emul-target.h
1945 e-mipself.o: $(srcdir)/config/e-mipself.c emul.h emul-target.h
1946 $(OBJS): $(DEP_@target_cpu_type@_@obj_format@)
1947 $(TARG_CPU_O): $(TCDEP_@target_cpu_type@_@obj_format@)
1948 $(OBJ_FORMAT_O): $(OBJDEP_@target_cpu_type@_@obj_format@)
1949 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
1950
1951 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1952 # Otherwise a system limit (for SysV at least) may be exceeded.
1953 .NOEXPORT: