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