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