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