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