Makefile.am revision 104834
138889Sjdp## Process this file with automake to generate Makefile.in
238889Sjdp
360484Sobrien## Work around apparent automake bug.
460484SobrienINTLLIBS = @INTLLIBS@
560484Sobrien
638889SjdpAUTOMAKE_OPTIONS = cygnus dejagnu
738889Sjdp
860484SobrienSUBDIRS = doc po
938889Sjdp
1038889Sjdptooldir = $(exec_prefix)/$(target_alias)
1138889Sjdp
1260484SobrienYACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo @YACC@ ; fi`
1360484SobrienLEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo @LEX@ ; fi`
1438889Sjdp
1577298SobrienWARN_CFLAGS = @WARN_CFLAGS@
1677298SobrienAM_CFLAGS = $(WARN_CFLAGS)
1777298Sobrien
1860484SobrienMKDEP = gcc -MM
1938889Sjdp
2038889SjdpTARG_CPU = @target_cpu_type@
2138889SjdpTARG_CPU_C = $(srcdir)/config/tc-@target_cpu_type@.c
2238889SjdpTARG_CPU_O = tc-@target_cpu_type@.o
2338889SjdpTARG_CPU_H = $(srcdir)/config/tc-@target_cpu_type@.h
2438889SjdpOBJ_FORMAT_C = $(srcdir)/config/obj-@obj_format@.c
2538889SjdpOBJ_FORMAT_O = obj-@obj_format@.o
2638889SjdpOBJ_FORMAT_H = $(srcdir)/config/obj-@obj_format@.h
2738889SjdpTARG_ENV_H = $(srcdir)/config/te-@te_file@.h
2838889SjdpATOF_TARG_C = $(srcdir)/config/atof-@atof@.c
2938889SjdpATOF_TARG_O = atof-@atof@.o
3038889Sjdp
3138889Sjdp# use @target_cpu_type@ for refering to configured target name
3238889SjdpIT_HDRS=itbl-parse.h $(srcdir)/itbl-ops.h 
3338889SjdpIT_SRCS=itbl-parse.c itbl-lex.c $(srcdir)/itbl-ops.c
3438889SjdpIT_DEPS=$(srcdir)/itbl-parse.y $(srcdir)/itbl-lex.l $(srcdir)/config/itbl-@target_cpu_type@.h
3538889SjdpIT_OBJS=itbl-parse.o itbl-lex.o itbl-ops.o
3638889Sjdp
3738889Sjdp# CPU types.  This is only used for dependency information.
3838889Sjdp
3938889SjdpCPU_TYPES = \
4038889Sjdp	a29k \
4138889Sjdp	alpha \
4238889Sjdp	arc \
4338889Sjdp	arm \
4460484Sobrien	avr \
4577298Sobrien	cris \
4638889Sjdp	d10v \
4760484Sobrien	d30v \
48104834Sobrien	dlx \
4960484Sobrien	fr30 \
50104834Sobrien	frv \
5138889Sjdp	h8300 \
5238889Sjdp	h8500 \
5338889Sjdp	hppa \
5477298Sobrien	ia64 \
5560484Sobrien	i370 \
5638889Sjdp	i386 \
5738889Sjdp	i860 \
5838889Sjdp	i960 \
5938889Sjdp	m32r \
6077298Sobrien	m68hc11 \
6138889Sjdp	m68k \
6238889Sjdp	m88k \
6360484Sobrien	mcore \
6438889Sjdp	mips \
6589857Sobrien	mmix \
6638889Sjdp	mn10200 \
6738889Sjdp	mn10300 \
6838889Sjdp	ns32k \
6989857Sobrien	openrisc \
7091041Sobrien	or32 \
7189857Sobrien	pdp11 \
7260484Sobrien	pj \
7338889Sjdp	ppc \
7489857Sobrien	s390 \
7538889Sjdp	sh \
76104834Sobrien	sh64 \
7738889Sjdp	sparc \
7838889Sjdp	tahoe \
7938889Sjdp	tic30 \
8077298Sobrien	tic54x \
8160484Sobrien	tic80 \
8238889Sjdp	vax \
8338889Sjdp	w65 \
8438889Sjdp	v850 \
8589857Sobrien	xstormy16 \
8638889Sjdp	z8k
8738889Sjdp
8838889Sjdp# Object format types.  This is only used for dependency information.
8978828Sobrien# We deliberately omit SOM, since it does not work as a cross assembler.
9038889Sjdp
9138889SjdpOBJ_FORMATS = \
9238889Sjdp	aout \
9338889Sjdp	bout \
9438889Sjdp	coff \
9538889Sjdp	ecoff \
9638889Sjdp	elf \
9738889Sjdp	evax \
9838889Sjdp	hp300 \
9938889Sjdp	ieee \
10038889Sjdp	vms
10138889Sjdp
10238889Sjdp# This is an sh case which sets valid according to whether the CPU
10338889Sjdp# type in the shell variable c and the OS type in the shell variable o
10438889Sjdp# are supported.  This helps cuts down on the amount of dependency
10538889Sjdp# information.
10638889Sjdp
10738889SjdpCPU_OBJ_VALID = \
10838889Sjdp	valid= ; \
10938889Sjdp	case $$o in \
11038889Sjdp	aout) \
11138889Sjdp	  case $$c in \
11289857Sobrien	  a29k | arm | cris | i386 | m68k | mips | ns32k | pdp11 | sparc | tahoe | tic30 | vax) \
11338889Sjdp	    valid=yes ;; \
11438889Sjdp	  esac ;; \
11538889Sjdp	bout) \
11638889Sjdp	  case $$c in \
11738889Sjdp	  i960) valid=yes ;; \
11838889Sjdp	  esac ;; \
11977298Sobrien	coff) valid=yes; \
12077298Sobrien	  case $$c in \
12189857Sobrien	  cris | i860 | mmix) \
12277298Sobrien	    valid= ;; \
12377298Sobrien	  esac ;; \
12438889Sjdp	ecoff) \
12538889Sjdp	  case $$c in \
12638889Sjdp	  mips | alpha) valid=yes ;; \
12738889Sjdp	  esac ;; \
12838889Sjdp	elf) valid=yes ;; \
12938889Sjdp	evax) \
13038889Sjdp	  case $$c in \
13138889Sjdp	  alpha) valid=yes ;; \
13238889Sjdp	  esac ;; \
13338889Sjdp	hp300) \
13438889Sjdp	  case $$c in \
13538889Sjdp	  m68k) valid=yes ;; \
13638889Sjdp	  esac ;; \
13738889Sjdp	vms) \
13838889Sjdp	  case $$c in \
13938889Sjdp	  vax) valid=yes ;; \
14038889Sjdp	  esac ;; \
14138889Sjdp	esac;
14238889Sjdp
14360484Sobrien# These are like CPU_TYPES and CPU_OBJ_VALID, for the obj=multi case.
14438889Sjdp
14577298SobrienMULTI_CPU_TYPES = i386 mips cris
14660484Sobrien
14760484SobrienMULTI_CPU_OBJ_VALID = \
14838889Sjdp	valid= ; \
14960484Sobrien	case $$o in \
15060484Sobrien	aout) \
15160484Sobrien	  case $$c in \
15277298Sobrien	  i386 | cris) valid=yes ;; \
15360484Sobrien	  esac ;; \
15477298Sobrien	coff) \
15577298Sobrien	  case $$c in \
15677298Sobrien	  i386 | mips) valid=yes ;; \
15777298Sobrien	  esac ;; \
15860484Sobrien	ecoff) \
15960484Sobrien	  case $$c in \
16060484Sobrien	  mips) valid=yes ;; \
16160484Sobrien	  esac ;; \
16260484Sobrien	elf) valid=yes ;; \
16338889Sjdp	esac;
16438889Sjdp
16538889Sjdp# Regular source files.
16638889Sjdp
16738889SjdpGAS_CFILES = \
16838889Sjdp	app.c \
16938889Sjdp	as.c \
17038889Sjdp	atof-generic.c \
17138889Sjdp	bignum-copy.c \
17238889Sjdp	cond.c \
17338889Sjdp	depend.c \
17460484Sobrien	dwarf2dbg.c \
17538889Sjdp	ecoff.c \
17638889Sjdp	ehopt.c \
17738889Sjdp	expr.c \
17838889Sjdp	flonum-copy.c \
17938889Sjdp	flonum-konst.c \
18038889Sjdp	flonum-mult.c \
18138889Sjdp	frags.c \
18238889Sjdp	hash.c \
18338889Sjdp	input-file.c \
18438889Sjdp	input-scrub.c \
18538889Sjdp	listing.c \
18638889Sjdp	literal.c \
18738889Sjdp	macro.c \
18838889Sjdp	messages.c \
18938889Sjdp	output-file.c \
19038889Sjdp	read.c \
19138889Sjdp	sb.c \
19238889Sjdp	stabs.c \
19338889Sjdp	subsegs.c \
19438889Sjdp	symbols.c \
19538889Sjdp	write.c
19638889Sjdp
19738889SjdpCFILES = $(GAS_CFILES) gasp.c itbl-ops.c
19838889Sjdp
19938889SjdpHFILES = \
20038889Sjdp	as.h \
20160484Sobrien	asintl.h \
20238889Sjdp	bignum.h \
20338889Sjdp	bit_fix.h \
20460484Sobrien	cgen.h \
20560484Sobrien	dwarf2dbg.h \
20638889Sjdp	ecoff.h \
20738889Sjdp	emul-target.h \
20838889Sjdp	emul.h \
20938889Sjdp	expr.h \
21038889Sjdp	flonum.h \
21138889Sjdp	frags.h \
21238889Sjdp	hash.h \
21338889Sjdp	input-file.h \
21438889Sjdp	itbl-ops.h \
21538889Sjdp	listing.h \
21638889Sjdp	macro.h \
21738889Sjdp	obj.h \
21838889Sjdp	output-file.h \
21938889Sjdp	read.h \
22038889Sjdp	sb.h \
22138889Sjdp	struc-symbol.h \
22238889Sjdp	subsegs.h \
22338889Sjdp	symbols.h \
22438889Sjdp	tc.h \
22538889Sjdp	write.h
22638889Sjdp
22738889Sjdp# CPU files in config.
22838889Sjdp
22938889SjdpTARGET_CPU_CFILES = \
23038889Sjdp	config/tc-a29k.c \
23138889Sjdp	config/tc-alpha.c \
23238889Sjdp	config/tc-arc.c \
23338889Sjdp	config/tc-arm.c \
23460484Sobrien	config/tc-avr.c \
23577298Sobrien	config/tc-cris.c \
23638889Sjdp	config/tc-d10v.c \
23760484Sobrien	config/tc-d30v.c \
238104834Sobrien	config/tc-dlx.c \
23960484Sobrien	config/tc-fr30.c \
240104834Sobrien	config/tc-frv.c \
24138889Sjdp	config/tc-h8300.c \
24238889Sjdp	config/tc-h8500.c \
24338889Sjdp	config/tc-hppa.c \
24477298Sobrien	config/tc-ia64.c \
24560484Sobrien	config/tc-i370.c \
24638889Sjdp	config/tc-i386.c \
24738889Sjdp	config/tc-i860.c \
24838889Sjdp	config/tc-i960.c \
24938889Sjdp	config/tc-m32r.c \
25077298Sobrien	config/tc-m68hc11.c \
25138889Sjdp	config/tc-m68k.c \
25238889Sjdp	config/tc-m88k.c \
25360484Sobrien	config/tc-mcore.c \
25438889Sjdp	config/tc-mips.c \
25589857Sobrien	config/tc-mmix.c \
25638889Sjdp	config/tc-mn10200.c \
25738889Sjdp	config/tc-mn10300.c \
25838889Sjdp	config/tc-ns32k.c \
25989857Sobrien	config/tc-openrisc.c \
26091041Sobrien	config/tc-or32.c \
26189857Sobrien	config/tc-pdp11.c \
26260484Sobrien	config/tc-pj.c \
26338889Sjdp	config/tc-ppc.c \
26489857Sobrien	config/tc-s390.c \
26538889Sjdp	config/tc-sh.c \
26691041Sobrien	config/tc-sh64.c \
26738889Sjdp	config/tc-sparc.c \
26838889Sjdp	config/tc-tahoe.c \
26938889Sjdp	config/tc-tic30.c \
27077298Sobrien	config/tc-tic54x.c \
27160484Sobrien	config/tc-tic80.c \
27238889Sjdp	config/tc-vax.c \
27338889Sjdp	config/tc-w65.c \
27438889Sjdp	config/tc-v850.c \
27589857Sobrien	config/tc-xstormy16.c \
27638889Sjdp	config/tc-z8k.c
27738889Sjdp
27838889SjdpTARGET_CPU_HFILES = \
27938889Sjdp	config/tc-a29k.h \
28038889Sjdp	config/tc-alpha.h \
28138889Sjdp	config/tc-arc.h \
28238889Sjdp	config/tc-arm.h \
28360484Sobrien	config/tc-avr.h \
28477298Sobrien	config/tc-cris.h \
28538889Sjdp	config/tc-d10v.h \
28660484Sobrien	config/tc-d30v.h \
287104834Sobrien	config/tc-dlx.h \
28860484Sobrien	config/tc-fr30.h \
289104834Sobrien	config/tc-frv.h \
29038889Sjdp	config/tc-h8300.h \
29138889Sjdp	config/tc-h8500.h \
29238889Sjdp	config/tc-hppa.h \
29377298Sobrien	config/tc-ia64.h \
29460484Sobrien	config/tc-i370.h \
29538889Sjdp	config/tc-i386.h \
29638889Sjdp	config/tc-i860.h \
29738889Sjdp	config/tc-i960.h \
29838889Sjdp	config/tc-m32r.h \
29977298Sobrien	config/tc-m68hc11.h \
30038889Sjdp	config/tc-m68k.h \
30138889Sjdp	config/tc-m88k.h \
30260484Sobrien	config/tc-mcore.h \
30338889Sjdp	config/tc-mips.h \
30489857Sobrien	config/tc-mmix.h \
30538889Sjdp	config/tc-mn10200.h \
30638889Sjdp	config/tc-mn10300.h \
30738889Sjdp	config/tc-ns32k.h \
30889857Sobrien	config/tc-openrisc.h \
30991041Sobrien	config/tc-or32.h \
31089857Sobrien	config/tc-pdp11.h \
31160484Sobrien	config/tc-pj.h \
31238889Sjdp	config/tc-ppc.h \
31389857Sobrien	config/tc-s390.h \
31438889Sjdp	config/tc-sh.h \
31591041Sobrien	config/tc-sh64.h \
31638889Sjdp	config/tc-sparc.h \
31738889Sjdp	config/tc-tahoe.h \
31838889Sjdp	config/tc-tic30.h \
31977298Sobrien	config/tc-tic54x.h \
32060484Sobrien	config/tc-tic80.h \
32138889Sjdp	config/tc-vax.h \
32238889Sjdp	config/tc-w65.h \
32338889Sjdp	config/tc-v850.h \
32489857Sobrien	config/tc-xstormy16.h \
32538889Sjdp	config/tc-z8k.h
32638889Sjdp
32738889Sjdp# OBJ files in config
32838889Sjdp
32938889SjdpOBJ_FORMAT_CFILES = \
33038889Sjdp	config/obj-aout.c \
33138889Sjdp	config/obj-bout.c \
33238889Sjdp	config/obj-coff.c \
33338889Sjdp	config/obj-ecoff.c \
33438889Sjdp	config/obj-elf.c \
33538889Sjdp	config/obj-evax.c \
33638889Sjdp	config/obj-hp300.c \
33738889Sjdp	config/obj-ieee.c \
33838889Sjdp	config/obj-som.c \
33938889Sjdp	config/obj-vms.c
34038889Sjdp
34138889SjdpOBJ_FORMAT_HFILES = \
34238889Sjdp	config/obj-aout.h \
34338889Sjdp	config/obj-bout.h \
34438889Sjdp	config/obj-coff.h \
34538889Sjdp	config/obj-ecoff.h \
34638889Sjdp	config/obj-elf.h \
34738889Sjdp	config/obj-evax.h \
34838889Sjdp	config/obj-hp300.h \
34938889Sjdp	config/obj-ieee.h \
35038889Sjdp	config/obj-som.h \
35138889Sjdp	config/obj-vms.h
35238889Sjdp
35338889Sjdp# Emulation header files in config
35438889Sjdp
35538889SjdpTARG_ENV_HFILES = \
35638889Sjdp	config/te-386bsd.h \
35738889Sjdp	config/te-aux.h \
35838889Sjdp	config/te-delta.h \
35938889Sjdp	config/te-delt88.h \
36038889Sjdp	config/te-dpx2.h \
36138889Sjdp	config/te-dynix.h \
36260484Sobrien	config/te-epoc-pe.h \
36338889Sjdp	config/te-generic.h \
36438889Sjdp	config/te-go32.h \
36538889Sjdp	config/te-hp300.h \
36638889Sjdp	config/te-hppa.h \
36778828Sobrien	config/te-hppa64.h \
36878828Sobrien	config/te-hppalinux64.h \
36938889Sjdp	config/te-i386aix.h \
37089857Sobrien	config/te-ia64aix.h \
37138889Sjdp	config/te-ic960.h \
37238889Sjdp	config/te-linux.h \
37338889Sjdp	config/te-lnews.h \
37438889Sjdp	config/te-lynx.h \
37538889Sjdp	config/te-mach.h \
37638889Sjdp	config/te-macos.h \
37738889Sjdp	config/te-nbsd.h \
37838889Sjdp	config/te-nbsd532.h \
37938889Sjdp	config/te-pc532mach.h \
38038889Sjdp	config/te-pe.h \
38138889Sjdp	config/te-ppcnw.h \
38238889Sjdp	config/te-psos.h \
38338889Sjdp	config/te-riscix.h \
38438889Sjdp	config/te-sparcaout.h \
38538889Sjdp	config/te-sun3.h \
38638889Sjdp	config/te-svr4.h \
38778828Sobrien	config/te-sysv32.h \
38878828Sobrien	config/te-tmips.h
38938889Sjdp
39038889Sjdp# Multi files in config
39138889Sjdp
39238889SjdpMULTI_CFILES = \
39377298Sobrien	config/e-crisaout.c \
39477298Sobrien	config/e-criself.c \
39560484Sobrien	config/e-i386aout.c \
39638889Sjdp	config/e-i386coff.c \
39738889Sjdp	config/e-i386elf.c \
39838889Sjdp	config/e-mipsecoff.c \
39938889Sjdp	config/e-mipself.c
40038889Sjdp
40138889SjdpCONFIG_OBJS = \
40238889Sjdp	$(TARG_CPU_O) \
40338889Sjdp	$(OBJ_FORMAT_O) \
40438889Sjdp	$(ATOF_TARG_O) \
40538889Sjdp	$(extra_objects)
40638889Sjdp
40738889SjdpGENERIC_OBJS = \
40838889Sjdp	app.o \
40938889Sjdp	as.o \
41038889Sjdp	atof-generic.o \
41138889Sjdp	bignum-copy.o \
41238889Sjdp	cond.o \
41338889Sjdp	depend.o \
41460484Sobrien	dwarf2dbg.o \
41538889Sjdp	ehopt.o \
41638889Sjdp	expr.o \
41738889Sjdp	flonum-konst.o \
41838889Sjdp	flonum-copy.o \
41938889Sjdp	flonum-mult.o \
42038889Sjdp	frags.o \
42138889Sjdp	hash.o \
42238889Sjdp	input-file.o \
42338889Sjdp	input-scrub.o \
42438889Sjdp	literal.o \
42538889Sjdp	messages.o \
42638889Sjdp	output-file.o \
42738889Sjdp	read.o \
42838889Sjdp	subsegs.o \
42938889Sjdp	symbols.o \
43038889Sjdp	write.o \
43138889Sjdp	listing.o \
43238889Sjdp	ecoff.o \
43338889Sjdp	stabs.o \
43438889Sjdp	sb.o \
43538889Sjdp	macro.o
43638889Sjdp
43738889SjdpOBJS = $(CONFIG_OBJS) $(GENERIC_OBJS)
43838889Sjdp
43960484SobrienPOTFILES = $(MULTI_CFILES) $(TARGET_ENV_HFILES) $(OBJ_FORMAT_HFILES) \
44060484Sobrien	$(OBJ_FORMAT_CFILES) $(TARGET_CPU_HFILES) $(TARGET_CPU_CFILES) \
44160484Sobrien	$(HFILES) $(CFILES) $(GAS_CFILES)
44260484Sobrienpo/POTFILES.in: @MAINT@ Makefile
44360484Sobrien	for file in $(POTFILES); do echo $$file; done | sort > tmp \
44460484Sobrien	  && mv tmp $(srcdir)/po/POTFILES.in
44560484Sobrien
446104834Sobrien# Note: GASP is now deprecated and will be removed at some point in the future.
447104834Sobrien# Anything that GASP could do can now be done by GAS.
448104834Sobriennoinst_PROGRAMS = as-new
44960484Sobriennoinst_SCRIPTS = $(GDBINIT)
45060484SobrienEXTRA_SCRIPTS = .gdbinit
45138889Sjdp
45238889Sjdp$(srcdir)/make-gas.com: stamp-mk.com
45338889Sjdpstamp-mk.com: vmsconf.sh Makefile
45438889Sjdp	sh $(srcdir)/vmsconf.sh $(GENERIC_OBJS) > new-make.com
45538889Sjdp	$(SHELL) $(srcdir)/../move-if-change new-make.com $(srcdir)/make-gas.com
45638889Sjdp	touch stamp-mk.com
45738889Sjdp
45889857SobrienEXTRA_DIST = make-gas.com m68k-parse.c itbl-parse.c itbl-parse.h itbl-lex.c
45989857Sobriendiststuff: $(EXTRA_DIST) info
46038889Sjdp
46160484SobrienDISTCLEANFILES = targ-cpu.h obj-format.h targ-env.h itbl-cpu.h cgen-desc.h
46238889Sjdp
46338889Sjdp# Now figure out from those variables how to compile and link.
46438889Sjdp
46538889SjdpBASEDIR = $(srcdir)/..
46638889SjdpBFDDIR = $(BASEDIR)/bfd
46738889SjdpINCDIR = $(BASEDIR)/include
46838889Sjdp
46938889Sjdp# This is the variable actually used when we compile.
47038889Sjdp# Specify the directories to be searched for header files.
47138889Sjdp# Both . and srcdir are used, in that order,
47238889Sjdp# so that tm.h and config.h will be found in the compilation
47338889Sjdp# subdirectory rather than in the source directory.
47460484SobrienINCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(srcdir)/config -I$(INCDIR) -I$(srcdir)/.. -I$(BFDDIR) -I$(srcdir)/../intl -I../intl -DLOCALEDIR="\"$(prefix)/share/locale\""
47538889Sjdp
47638889Sjdp# This should be parallel to INCLUDES, but should replace $(srcdir)
47738889Sjdp# with $${srcdir}, and should work in a subdirectory.  This is used
47838889Sjdp# when building dependencies, because the dependency building is done
47938889Sjdp# in a subdirectory.
48060484SobrienDEP_INCLUDES = -D_GNU_SOURCE -I.. -I$${srcdir} -I../../bfd -I$${srcdir}/config -I$${srcdir}/../include -I$${srcdir}/.. -I$${srcdir}/../bfd -I$${srcdir}/../intl -I../../intl -DLOCALEDIR="\"$(prefix)/share/locale\""
48138889Sjdp
48289857SobrienDEP_FLAGS = -DBFD_ASSEMBLER -DOBJ_MAYBE_ELF \
48389857Sobrien	-I. -I.. -I$${srcdir} -I../../bfd $(DEP_INCLUDES)
48489857Sobrien
48538889Sjdp# How to link with both our special library facilities
48638889Sjdp# and the system's installed libraries.
48738889Sjdp
48838889SjdpGASLIBS = @OPCODES_LIB@ @BFDLIB@ ../libiberty/libiberty.a
48938889Sjdp
49038889Sjdp# Files to be copied away after each stage in building.
49138889SjdpSTAGESTUFF = *.o $(noinst_PROGRAMS)
49238889Sjdp
49338889Sjdp$(OBJS): @ALL_OBJ_DEPS@
49438889Sjdp
49538889Sjdpas_new_SOURCES = $(GAS_CFILES)
49638889Sjdpas_new_LDADD = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
49777298Sobrien	$(extra_objects) $(GASLIBS) $(INTLLIBS) $(LIBM)
49838889Sjdpas_new_DEPENDENCIES = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
49960484Sobrien	$(extra_objects) $(GASLIBS) $(INTLDEPS)
50038889Sjdp
50138889Sjdp# Stuff that every object file depends upon.  If anything is removed
50238889Sjdp# from this list, remove it from dep-in.sed as well.
503104834Sobrien$(OBJS): $(INCDIR)/bin-bugs.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
504104834Sobrien	$(INCDIR)/progress.h $(INCDIR)/fopen-same.h \
50577298Sobrien	$(OBJ_FORMAT_H) $(TARG_CPU_H) $(TARG_ENV_H) \
50677298Sobrien	as.h asintl.h bignum.h bit_fix.h config.h emul.h expr.h flonum.h \
50777298Sobrien	frags.h hash.h listing.h obj.h read.h symbols.h tc.h write.h
50838889Sjdp
50938889Sjdpgasp_new_SOURCES = gasp.c macro.c sb.c hash.c
51060484Sobriengasp_new_LDADD = ../libiberty/libiberty.a $(INTLLIBS)
51160484Sobriengasp_new_DEPENDENCIES = ../libiberty/libiberty.a $(INTLDEPS)
51238889Sjdp
51338889SjdpEXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
51438889Sjdp          echo $${rootme}/../expect/expect ; \
51538889Sjdp          else echo expect ; fi`
51638889Sjdp
51738889SjdpRUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
51838889Sjdp		echo $${srcdir}/../dejagnu/runtest ; else echo runtest; \
51938889Sjdp	   fi`
52038889SjdpRUNTESTFLAGS=
52138889Sjdp
52238889Sjdpcheck-DEJAGNU: site.exp
52338889Sjdp	if [ -d testsuite ]; then \
52438889Sjdp	  true; \
52538889Sjdp	else \
52638889Sjdp	  mkdir testsuite; \
52738889Sjdp	fi
52838889Sjdp	rm -f testsuite/site.exp
52938889Sjdp	cp site.exp testsuite/site.exp
53038889Sjdp	rootme=`pwd`; export rootme; \
53138889Sjdp	srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
53238889Sjdp	EXPECT=${EXPECT} ; export EXPECT ; \
53338889Sjdp	if [ -f $(top_builddir)/../expect/expect ]; then \
53438889Sjdp	  TCL_LIBRARY=`cd $(top_srcdir)/../tcl/library && pwd`; \
53538889Sjdp	  export TCL_LIBRARY; \
53638889Sjdp	fi; \
53738889Sjdp	runtest=$(RUNTEST); \
53838889Sjdp	cd testsuite; \
53938889Sjdp	if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
54038889Sjdp	  $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
54138889Sjdp		$(RUNTESTFLAGS); \
54238889Sjdp	else echo "WARNING: could not find \`runtest'" 1>&2; :;\
54338889Sjdp	fi
54438889Sjdp
54538889Sjdp# The implicit .c.o rule doesn't work for these, perhaps because of
54638889Sjdp# the variables, or perhaps because the sources are not on vpath.
54777298Sobrien$(TARG_CPU_O): $(TARG_CPU_C)
54838889Sjdp	$(COMPILE) -c $(TARG_CPU_C)
54938889Sjdp$(ATOF_TARG_O): $(ATOF_TARG_C)
55038889Sjdp	$(COMPILE) -c $(ATOF_TARG_C)
55138889Sjdp
55238889Sjdp# ecoff.c only has full dependencies when ECOFF_DEBUGGING is defined,
55338889Sjdp# so the automatic dependency stuff doesn't work.
55438889Sjdpecoff.o : ecoff.c ecoff.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
55538889Sjdp	$(INCDIR)/coff/ecoff.h $(INCDIR)/coff/symconst.h \
55638889Sjdp	$(INCDIR)/aout/stab_gnu.h
55738889Sjdp
55838889Sjdp# We need all these explicit rules for the multi stuff.  Because of
55938889Sjdp# these rules, we don't need one for OBJ_FORMAT_O.
56038889Sjdp
56138889Sjdpobj-aout.o : $(srcdir)/config/obj-aout.c
56238889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-aout.c
56338889Sjdpobj-bout.o : $(srcdir)/config/obj-bout.c
56438889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-bout.c
56538889Sjdpobj-coff.o: $(srcdir)/config/obj-coff.c
56638889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-coff.c
56738889Sjdpobj-ecoff.o : $(srcdir)/config/obj-ecoff.c
56838889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-ecoff.c
56938889Sjdpobj-elf.o : $(srcdir)/config/obj-elf.c
57038889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-elf.c
57138889Sjdpobj-evax.o : $(srcdir)/config/obj-evax.c
57238889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-evax.c
57338889Sjdpobj-hp300.o : $(srcdir)/config/obj-hp300.c
57438889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-hp300.c
57538889Sjdpobj-ieee.o : $(srcdir)/config/obj-ieee.c
57638889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-ieee.c
57738889Sjdpobj-multi.o : $(srcdir)/config/obj-multi.c
57838889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-multi.c
57938889Sjdpobj-som.o : $(srcdir)/config/obj-som.c
58038889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-som.c
58138889Sjdpobj-vms.o : $(srcdir)/config/obj-vms.c
58238889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-vms.c
58338889Sjdp
58438889Sjdpe-mipself.o : $(srcdir)/config/e-mipself.c
58538889Sjdp	$(COMPILE) -c $(srcdir)/config/e-mipself.c
58638889Sjdpe-mipsecoff.o : $(srcdir)/config/e-mipsecoff.c
58738889Sjdp	$(COMPILE) -c $(srcdir)/config/e-mipsecoff.c
58860484Sobriene-i386aout.o: $(srcdir)/config/e-i386aout.c
58960484Sobrien	$(COMPILE) -c $(srcdir)/config/e-i386aout.c
59038889Sjdpe-i386coff.o: $(srcdir)/config/e-i386coff.c
59138889Sjdp	$(COMPILE) -c $(srcdir)/config/e-i386coff.c
59238889Sjdpe-i386elf.o: $(srcdir)/config/e-i386elf.c
59338889Sjdp	$(COMPILE) -c $(srcdir)/config/e-i386elf.c
59477298Sobriene-crisaout.o: $(srcdir)/config/e-crisaout.c
59577298Sobrien	$(COMPILE) -c $(srcdir)/config/e-crisaout.c
59677298Sobriene-criself.o: $(srcdir)/config/e-criself.c
59777298Sobrien	$(COMPILE) -c $(srcdir)/config/e-criself.c
59838889Sjdp
59938889Sjdp# The m68k operand parser.
60038889Sjdp
60138889SjdpEXTRA_as_new_SOURCES = config/m68k-parse.y
60238889Sjdp
60360484Sobrien# If m68k-parse.y is in a different directory, then ylwrap will use an
60460484Sobrien# absolute path when it invokes yacc, which will cause yacc to put the
60560484Sobrien# absolute path into the generated file.  That's a pain when it comes
60660484Sobrien# to generating snapshots, because it introduces spurious diffs.
60760484Sobrien# Since when we make the snapshots $(srcdir) = ".", we check for that
60860484Sobrien# case and handle it differently.  This means that anybody who
60960484Sobrien# configures with $(srcdir) = "." will have to set their path in the
61060484Sobrien# debugger if they want to debug m68k-parse.y.  This is bad, but on
61160484Sobrien# the other hand it's good that people who use the prebuilt
61260484Sobrien# m68k-parse.c don't get a spurious absolute path.
61338889Sjdpm68k-parse.c: $(srcdir)/config/m68k-parse.y
61460484Sobrien	f=$(srcdir)/config/m68k-parse.y; \
61560484Sobrien	if [ $$f = "./config/m68k-parse.y" ]; then \
61660484Sobrien	  ln -s config/m68k-parse.y . > /dev/null 2>/dev/null || \
61760484Sobrien	   ln config/m68k-parse.y . > /dev/null 2>/dev/null || \
61860484Sobrien	   cp config/m68k-parse.y . >/dev/null 2>/dev/null; \
61960484Sobrien	  f=m68k-parse.y; \
62060484Sobrien	else true; fi; \
62160484Sobrien	$(SHELL) $(YLWRAP) "$(YACC)" $$f y.tab.c m68k-parse.c --; \
62260484Sobrien	if [ $$f = "m68k-parse.y" ]; then \
62360484Sobrien	  rm -f m68k-parse.y; \
62460484Sobrien	else true; fi
62538889Sjdpm68k-parse.o: m68k-parse.c $(srcdir)/config/m68k-parse.h
62638889Sjdp
62738889Sjdp# Don't let the .y.h rule clobber m68k-parse.h.
62838889Sjdpm68k-parse.h: ; @true
62938889Sjdp$(srcdir)/config/m68k-parse.h: ; @true
63038889Sjdp
63138889Sjdp# The instruction table specification lexical analyzer and parser.
63238889Sjdp
63338889Sjdpitbl-lex.c: $(srcdir)/itbl-lex.l
63438889Sjdpitbl-lex.o: itbl-lex.c itbl-parse.h
63538889Sjdp
63638889Sjdpitbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h
63738889Sjdp
63838889Sjdpitbl-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
63938889Sjdp
64038889Sjdpitbl-parse.c itbl-parse.h: $(srcdir)/itbl-parse.y
64138889Sjdp	$(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/itbl-parse.y y.tab.c itbl-parse.c y.tab.h itbl-parse.h -- -d
64238889Sjdp
64338889Sjdp# stand-alone itbl assembler & disassembler
64438889Sjdp
645104834SobrienEXTRA_PROGRAMS = gasp-new itbl-test
64638889Sjdpitbl_test_SOURCES = itbl-parse.y itbl-lex.l
64760484Sobrienitbl_test_LDADD = itbl-tops.o itbl-test.o $(GASLIBS) @LEXLIB@
64838889Sjdp
64960484Sobrienitbl-tops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
65060484Sobrien	$(COMPILE) -o itbl-tops.o -DSTAND_ALONE -c $(srcdir)/itbl-ops.c
65138889Sjdp
65238889Sjdpitbl-test.o: $(srcdir)/testsuite/gas/all/itbl-test.c $(srcdir)/itbl-ops.h
65338889Sjdp	$(COMPILE) -c -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c
65438889Sjdp
65538889Sjdp# CGEN interface.
65638889Sjdp
65760484SobrienCGEN_CPU_PREFIX = @cgen_cpu_prefix@
65860484Sobrien
65960484Sobriencgen.o: cgen.c cgen.h cgen-desc.h subsegs.h \
66038889Sjdp	$(INCDIR)/obstack.h $(INCDIR)/opcode/cgen.h \
66160484Sobrien	$(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-desc.h \
66260484Sobrien	$(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-opc.h
66338889Sjdp
66438889Sjdp# Remake the info files.
66538889Sjdp
66638889SjdpMOSTLYCLEANFILES = $(STAGESTUFF) core stamp-mk.com \
66738889Sjdp	testsuite/*.o testsuite/*.out testsuite/gas.log testsuite/gas.sum \
66838889Sjdp	testsuite/site.exp site.bak site.exp stage stage1 stage2
66938889Sjdp
67077298SobrienCLEANFILES = dep.sed DEPTC DEPTCA DEPOBJ DEPOBJA DEP2 DEP2A DEP1 DEPA DEP DEPDIR
67138889Sjdp
67238889Sjdp.PHONY: install-exec-local install-data-local
67360484Sobrien.PHONY: install-exec-bindir install-exec-tooldir
67438889Sjdp
67560484Sobrieninstall-exec-local: install-exec-bindir @install_tooldir@
67660484Sobrien
67760484Sobrieninstall-exec-bindir: $(noinst_PROGRAMS)
678104834Sobrien	$(mkinstalldirs) $(DESTDIR)$(bindir)
67938889Sjdp	@list='$(noinst_PROGRAMS)'; for p in $$list; do \
68038889Sjdp	  if test -f $$p; then \
68160484Sobrien	    echo " $(LIBTOOL)  --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
682104834Sobrien	    $(LIBTOOL)  --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
68338889Sjdp	  else :; fi; \
68438889Sjdp	done
68560484Sobrien
68660484Sobrieninstall-exec-tooldir: install-exec-bindir $(noinst_PROGRAMS)
687104834Sobrien	$(mkinstalldirs) $(DESTDIR)$(tooldir)/bin
68838889Sjdp	n=`echo as | sed '$(transform)'`; \
68938889Sjdp	if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/as$(EXEEXT)" ]; then \
690104834Sobrien	  rm -f $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \
691104834Sobrien	  ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT) >/dev/null 2>/dev/null \
692104834Sobrien	    || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) as-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \
69360484Sobrien	else \
69460484Sobrien	  true ; \
69538889Sjdp	fi
69638889Sjdp
69738889Sjdp# These exist for maintenance purposes.
69838889Sjdp
69938889Sjdp.PHONY: bootstrap bootstrap2 bootstrap3 stage1 stage2 stage3 comparison
70038889Sjdp
70138889Sjdpbootstrap: as-new
70238889Sjdp	$(MAKE) stage1
70338889Sjdp	rm -f stage && ln -s stage1 stage
70438889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
70538889Sjdp	$(MAKE) stage2
70638889Sjdp	rm -f stage && ln -s stage2 stage
70738889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
70838889Sjdp	$(MAKE) comparison against=stage2
70938889Sjdp
71038889Sjdpbootstrap2:
71138889Sjdp	rm -f stage && ln -s stage1 stage
71238889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
71338889Sjdp	$(MAKE) stage2
71438889Sjdp	rm -f stage && ln -s stage2 stage
71538889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
71638889Sjdp	$(MAKE) comparison against=stage2
71738889Sjdp
71838889Sjdpbootstrap3:
71938889Sjdp	rm -f stage && ln -s stage2 stage
72038889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
72138889Sjdp	$(MAKE) comparison against=stage2
72238889Sjdp
72338889Sjdp# Copy the object files from a particular stage into a subdirectory.
72438889Sjdpstage1:
72538889Sjdp	-mkdir stage1
72638889Sjdp	-mv $(STAGESTUFF) stage1
72738889Sjdp	if [ -f stage1/as-new$(EXEEXT) -a ! -f stage1/as$(EXEEXT) ] ; then (cd stage1 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
72838889Sjdp
72938889Sjdpstage2:
73038889Sjdp	-mkdir stage2
73138889Sjdp	-mv $(STAGESTUFF) stage2
73238889Sjdp	if [ -f stage2/as-new$(EXEEXT) -a ! -f stage2/as$(EXEEXT) ] ; then (cd stage2 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
73338889Sjdp
73438889Sjdpstage3:
73538889Sjdp	-mkdir stage3
73638889Sjdp	-mv $(STAGESTUFF) stage3
73738889Sjdp	if [ -f stage3/as-new$(EXEEXT) -a ! -f stage3/as$(EXEEXT) ] ; then (cd stage3 ; ln -s as-new as$(EXEEXT)) ; fi
73838889Sjdp
73938889Sjdpagainst=stage2
74038889Sjdp
74138889Sjdp# This rule is derived from corresponding code in the Makefile.in for gcc.
74238889Sjdp# The "tail +16c" is to bypass headers which may include timestamps or
74338889Sjdp# temporary assembly file names.
74438889Sjdpcomparison:
74538889Sjdp	x=0 ; \
74638889Sjdp	for file in *.o ; do \
74738889Sjdp	  tail +16c ./$$file > tmp-foo1; \
74838889Sjdp	  if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \
74938889Sjdp	    if cmp tmp-foo1 tmp-foo2 ; then \
75038889Sjdp	      true ; \
75138889Sjdp	    else \
75238889Sjdp	      echo $$file differs ; \
75338889Sjdp	      x=1 ; \
75438889Sjdp	    fi ; \
75538889Sjdp	  else true; fi ; \
75638889Sjdp	done ; \
75738889Sjdp	exit $$x
75838889Sjdp	-rm -f tmp-foo*
75938889Sjdp
76038889Sjdp.PHONY: de-stage1 de-stage2 de-stage3
76138889Sjdp
76238889Sjdpde-stage1:
76338889Sjdp	- (cd stage1 ; rm -f as$(EXEEXT) ; mv -f * ..)
76438889Sjdp	- rmdir stage1
76538889Sjdp
76638889Sjdpde-stage2:
76738889Sjdp	- (cd stage2 ; rm -f as$(EXEEXT) ; mv -f * ..)
76838889Sjdp	- rmdir stage2
76938889Sjdp
77038889Sjdpde-stage3:
77138889Sjdp	- (cd stage3 ; rm -f as$(EXEEXT) ; mv -f * ..)
77238889Sjdp	- rmdir stage3
77338889Sjdp
77438889SjdpDEP_FILE_DEPS =  $(CFILES) $(HFILES) $(TARGET_CPU_CFILES) \
77538889Sjdp	$(TARGET_CPU_HFILES) $(OBJ_FORMAT_CFILES) $(OBJ_FORMAT_HFILES)
77638889Sjdp
77789857SobrienMakefile: $(BFDDIR)/configure.in
77889857Sobrien
77977298Sobrien# Automatic dependency computation.  This is a real pain, because the
78077298Sobrien# dependencies change based on target_cpu_type and obj_format.
78177298Sobrien# Just to make things even more complicated, automake separates the
78277298Sobrien# dependency variable assignments from the dependency rules, and tacks
78377298Sobrien# on a .NOEXPORT at the end of Makefile.in.
78477298Sobrien
78560484SobrienDEP: dep.sed $(DEP_FILE_DEPS) DEPTC DEPOBJ DEP2
78677298Sobrien	rm -f DEP1 # delete because we use $? in DEP1 rule
78738889Sjdp	srcdir=`cd $(srcdir); pwd`; \
78860484Sobrien	$(MAKE) MKDEP="$(MKDEP)" srcdir="$${srcdir}" VPATH="$${srcdir}" DEP1
78960484Sobrien	rm -rf DEPDIR
79077298Sobrien	echo 'AMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.' > DEPA
79160484Sobrien	sed -f dep.sed < DEPTC >> DEPA
79260484Sobrien	sed -f dep.sed < DEPOBJ >> DEPA
79360484Sobrien	sed -f dep.sed < DEP2 >> DEPA
79477298Sobrien	echo 'BMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.' >> DEPA
79577298Sobrien	echo '#MKDEP    DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.' >> DEPA
79677298Sobrien	sed -f dep.sed < DEP1 >> DEPA
79760484Sobrien	echo '$$(OBJS): $$(DEP_@target''_cpu_type@_@obj''_format@)' >> DEPA
79860484Sobrien	echo '$$(TARG_CPU_O): $$(DEPTC_@target''_cpu_type@_@obj''_format@)' >> DEPA
79960484Sobrien	echo '$$(OBJ_FORMAT_O): $$(DEPOBJ_@target''_cpu_type@_@obj''_format@)' >> DEPA
80077298Sobrien	echo '#MKDEP    DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.' >> DEPA
80177298Sobrien	if grep ' /' DEPA > /dev/null 2> /dev/null; then \
80277298Sobrien	  echo 'make DEP failed!'; exit 1; \
80377298Sobrien	else \
80477298Sobrien	  mv -f DEPA $@; \
80577298Sobrien	fi
80638889Sjdp
80760484SobrienDEP1: $(CFILES) $(MULTI_CFILES)
80860484Sobrien	if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
80938889Sjdp	srcdir=`cd $(srcdir); pwd`; \
81060484Sobrien	cd DEPDIR; \
81138889Sjdp	echo '' > targ-cpu.h; \
81238889Sjdp	echo '' > obj-format.h; \
81338889Sjdp	echo '' > targ-env.h; \
81438889Sjdp	echo '' > itbl-cpu.h; \
81560484Sobrien	echo '' > itbl-parse.h; \
81689857Sobrien	$(MKDEP) $(DEP_FLAGS) $? > DEP
81760484Sobrien	mv -f DEPDIR/DEP $@
81838889Sjdp
81938889Sjdp# Work out the special dependencies for the tc-*.c files.
82060484SobrienDEPTC: $(TARGET_CPU_CFILES)
82160484Sobrien	rm -f DEPTCA
82260484Sobrien	if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
82338889Sjdp	srcdir=`cd $(srcdir); pwd`; \
82460484Sobrien	cd DEPDIR; \
82538889Sjdp	for c in $(CPU_TYPES); do \
82638889Sjdp	  for o in $(OBJ_FORMATS); do \
82738889Sjdp	    $(CPU_OBJ_VALID) \
82838889Sjdp	    if [ x$${valid} = xyes ]; then \
82938889Sjdp	      echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
83038889Sjdp	      echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \
83138889Sjdp	      echo '#include "te-generic.h"' > targ-env.h; \
83238889Sjdp	      echo '' > itbl-cpu.h; \
83360484Sobrien	      echo '' > itbl-parse.h; \
83460484Sobrien	      echo '#include "opcodes/'"$${c}"'-desc.h"' > cgen-desc.h; \
83538889Sjdp	      rm -f dummy.c; \
83638889Sjdp	      cp $${srcdir}/config/tc-$${c}.c dummy.c; \
83789857Sobrien	      $(MKDEP) $(DEP_FLAGS) dummy.c | \
83860484Sobrien	        sed -e "s/dummy.o: dummy.c/DEPTC_$${c}_$${o} =/" >> ../DEPTCA; \
83938889Sjdp	      rm -f dummy.c; \
84038889Sjdp	    else true; fi; \
84138889Sjdp	  done; \
84238889Sjdp	done
84360484Sobrien	echo 'DEPTC_hppa_som = $$(srcdir)/config/tc-hppa.h subsegs.h \' >> DEPTCA
84460484Sobrien	echo '  $$(INCDIR)/obstack.h $$(BFDDIR)/libhppa.h \' >> DEPTCA
84560484Sobrien	echo '  $$(INCDIR)/opcode/hppa.h $$(BFDDIR)/som.h' >> DEPTCA
84660484Sobrien	for c in $(MULTI_CPU_TYPES); do \
84777298Sobrien	  echo "DEPTC_$${c}"'_multi = \' >> DEPTCA; \
84860484Sobrien	  for o in $(OBJ_FORMATS); do \
84960484Sobrien	    $(MULTI_CPU_OBJ_VALID) \
85038889Sjdp	    if [ x$${valid} = xyes ]; then \
85160484Sobrien	      echo '$$(DEPTC_'"$${c}_$${o}"') \' >> DEPTCA; \
85238889Sjdp	    else true; fi; \
85360484Sobrien	  done; \
85460484Sobrien	  echo '' >> DEPTCA; \
85538889Sjdp	done
85660484Sobrien	mv -f DEPTCA DEPTC
85738889Sjdp
85838889Sjdp# Work out the special dependencies for the obj-*.c files.
85960484SobrienDEPOBJ: $(OBJ_FORMAT_CFILES)
86060484Sobrien	rm -f DEPOBJA
86160484Sobrien	if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
86238889Sjdp	srcdir=`cd $(srcdir); pwd`; \
86360484Sobrien	cd DEPDIR; \
86438889Sjdp	for c in $(CPU_TYPES); do \
86538889Sjdp	  for o in $(OBJ_FORMATS); do \
86638889Sjdp	    $(CPU_OBJ_VALID) \
86738889Sjdp	    if [ x$${valid} = xyes ]; then \
86838889Sjdp	      echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
86938889Sjdp	      echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \
87038889Sjdp	      echo '#include "te-generic.h"' > targ-env.h; \
87138889Sjdp	      echo '' > itbl-cpu.h; \
87260484Sobrien	      echo '' > itbl-parse.h; \
87338889Sjdp	      rm -f dummy.c; \
87438889Sjdp	      cp $${srcdir}/config/obj-$${o}.c dummy.c; \
87589857Sobrien	      $(MKDEP) $(DEP_FLAGS) dummy.c | \
87660484Sobrien	        sed -e "s/dummy.o: dummy.c/DEPOBJ_$${c}_$${o} =/" >> ../DEPOBJA; \
87738889Sjdp	      rm -f dummy.c; \
87838889Sjdp	    else true; fi; \
87938889Sjdp	  done; \
88038889Sjdp	done
88160484Sobrien	echo 'DEPOBJ_hppa_som = $$(srcdir)/config/obj-som.h subsegs.h \' >> DEPOBJA
88260484Sobrien	echo '  $$(INCDIR)/obstack.h $$(BFDDIR)/libhppa.h \' >> DEPOBJA
88360484Sobrien	echo '  $$(BFDDIR)/som.h  $$(INCDIR)/aout/stab_gnu.h \' >> DEPOBJA
88460484Sobrien	echo '  $$(INCDIR)/aout/stab.def' >> DEPOBJA
88560484Sobrien	for c in $(MULTI_CPU_TYPES); do \
88677298Sobrien	  echo "DEPOBJ_$${c}"'_multi = \' >> DEPOBJA; \
88760484Sobrien	  for o in $(OBJ_FORMATS); do \
88860484Sobrien	    $(MULTI_CPU_OBJ_VALID) \
88938889Sjdp	    if [ x$${valid} = xyes ]; then \
89060484Sobrien	      echo '$$(DEPOBJ_'"$${c}_$${o}"') \' >> DEPOBJA; \
89138889Sjdp	    else true; fi; \
89260484Sobrien	  done; \
89360484Sobrien	  echo '' >> DEPOBJA; \
89438889Sjdp	done
89560484Sobrien	mv -f DEPOBJA DEPOBJ
89638889Sjdp
89738889Sjdp# Work out the dependencies for each CPU/OBJ combination.
89838889Sjdp# Note that SOM is a special case, because it only works native.
89960484SobrienDEP2: $(TARGET_CPU_HFILES) $(OBJ_FORMAT_HFILES)
90077298Sobrien	rm -f DEP2A
90160484Sobrien	if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
90238889Sjdp	srcdir=`cd $(srcdir); pwd`; \
90360484Sobrien	cd DEPDIR; \
90438889Sjdp	for c in $(CPU_TYPES); do \
90538889Sjdp	  for o in $(OBJ_FORMATS); do \
90638889Sjdp	    $(CPU_OBJ_VALID) \
90738889Sjdp	    if [ x$${valid} = xyes ]; then \
90838889Sjdp	      echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
90938889Sjdp	      echo '#include "obj-'"$${o}"'.h"' > dummy.c; \
91089857Sobrien	      $(MKDEP) $(DEP_FLAGS) dummy.c | \
91177298Sobrien	        sed -e "s/dummy.o: dummy.c/DEP_$${c}_$${o} =/" >> ../DEP2A; \
91238889Sjdp	    else true; fi; \
91338889Sjdp	  done; \
91438889Sjdp	done
91577298Sobrien	echo 'DEP_hppa_som = $$(BFDDIR)/som.h' >> DEP2A
91660484Sobrien	for c in $(MULTI_CPU_TYPES); do \
91777298Sobrien	  echo "DEP_$${c}"'_multi = \' >> DEP2A; \
91860484Sobrien	  for o in $(OBJ_FORMATS); do \
91960484Sobrien	    $(MULTI_CPU_OBJ_VALID) \
92038889Sjdp	    if [ x$${valid} = xyes ]; then \
92177298Sobrien	      echo '$$(DEP_'"$${c}_$${o}"') \' >> DEP2A; \
92238889Sjdp	    else true; fi; \
92360484Sobrien	  done; \
92477298Sobrien	  echo '' >> DEP2A; \
92538889Sjdp	done
92677298Sobrien	mv -f DEP2A DEP2
92738889Sjdp
92838889Sjdpdep.sed: dep-in.sed config.status
92938889Sjdp	srcdir=`cd $(srcdir); pwd`; \
93038889Sjdp	sed <$(srcdir)/dep-in.sed >dep.sed \
93138889Sjdp		-e "s!@INCDIR@!$${srcdir}/../include!" \
93238889Sjdp		-e "s!@BFDDIR@!$${srcdir}/../bfd!" \
93394536Sobrien		-e "s!@SRCDIR@!$${srcdir}!" \
93494536Sobrien		-e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/gas,,`'!'
93538889Sjdp
93660484Sobriendep: DEP
93777298Sobrien	sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
93877298Sobrien	  < Makefile > tmp-Makefile
93960484Sobrien	cat DEP >> tmp-Makefile
94038889Sjdp	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
94138889Sjdp
94260484Sobriendep-in: DEP
94377298Sobrien	sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
94477298Sobrien	  < $(srcdir)/Makefile.in > tmp-Makefile.in
94560484Sobrien	cat DEP >> tmp-Makefile.in
94638889Sjdp	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
94738889Sjdp
94860484Sobriendep-am: DEP
94977298Sobrien	sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
95077298Sobrien	  < $(srcdir)/Makefile.am > tmp-Makefile.am
95160484Sobrien	cat DEP >> tmp-Makefile.am
95238889Sjdp	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
95338889Sjdp
95477298Sobrien# HEED THE MKDEP WARNINGS.
95577298Sobrien# ANYTHING CHANGED OR ADDED BETWEEN THE WARNING LINES MAY GO AWAY.
95638889Sjdp.PHONY: dep dep-in dep-am
95738889Sjdp
95877298SobrienAMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.
95989857SobrienDEPTC_a29k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
96089857Sobrien  $(srcdir)/config/tc-a29k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
96189857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/a29k.h
96289857SobrienDEPTC_a29k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
96389857Sobrien  $(srcdir)/config/tc-a29k.h $(INCDIR)/coff/internal.h \
96489857Sobrien  $(INCDIR)/coff/a29k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
96589857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/a29k.h
96689857SobrienDEPTC_a29k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
96789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
96889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h \
96989857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/a29k.h
97089857SobrienDEPTC_alpha_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
97189857Sobrien  $(srcdir)/config/tc-alpha.h $(INCDIR)/coff/internal.h \
97289857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
97389857Sobrien  struc-symbol.h ecoff.h $(INCDIR)/opcode/alpha.h $(INCDIR)/safe-ctype.h \
97489857Sobrien  $(srcdir)/config/atof-vax.c
97589857SobrienDEPTC_alpha_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \
97689857Sobrien  $(srcdir)/config/tc-alpha.h ecoff.h $(INCDIR)/coff/sym.h \
97789857Sobrien  $(INCDIR)/coff/ecoff.h subsegs.h $(INCDIR)/obstack.h \
97889857Sobrien  struc-symbol.h $(INCDIR)/opcode/alpha.h $(INCDIR)/safe-ctype.h \
97989857Sobrien  $(srcdir)/config/atof-vax.c
98089857SobrienDEPTC_alpha_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
98189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
98289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h \
98377298Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h ecoff.h \
98489857Sobrien  $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h $(INCDIR)/opcode/alpha.h \
98589857Sobrien  $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \
98689857Sobrien  dwarf2dbg.h $(INCDIR)/safe-ctype.h $(srcdir)/config/atof-vax.c
98789857SobrienDEPTC_alpha_evax = $(INCDIR)/symcat.h $(srcdir)/config/obj-evax.h \
98889857Sobrien  $(srcdir)/config/tc-alpha.h subsegs.h $(INCDIR)/obstack.h \
98989857Sobrien  struc-symbol.h ecoff.h $(INCDIR)/opcode/alpha.h $(INCDIR)/safe-ctype.h \
99038889Sjdp  $(srcdir)/config/atof-vax.c
99189857SobrienDEPTC_arc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
99289857Sobrien  $(srcdir)/config/tc-arc.h $(INCDIR)/coff/internal.h \
99389857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h struc-symbol.h \
99489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
99589857Sobrien  $(INCDIR)/opcode/arc.h $(srcdir)/../opcodes/arc-ext.h \
99689857Sobrien  $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
99789857SobrienDEPTC_arc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
99889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
99989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h \
100089857Sobrien  struc-symbol.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
100189857Sobrien  $(INCDIR)/opcode/arc.h $(srcdir)/../opcodes/arc-ext.h \
100289857Sobrien  $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
100389857SobrienDEPTC_arm_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
100489857Sobrien  $(srcdir)/config/tc-arm.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
100589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h
100689857SobrienDEPTC_arm_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
100789857Sobrien  $(srcdir)/config/tc-arm.h $(INCDIR)/coff/internal.h \
100889857Sobrien  $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
100989857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
101089857Sobrien  $(INCDIR)/obstack.h
101189857SobrienDEPTC_arm_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
101289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
101389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h \
101489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
101589857Sobrien  $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
101689857SobrienDEPTC_avr_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
101789857Sobrien  $(srcdir)/config/tc-avr.h $(INCDIR)/coff/internal.h \
101889857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
101977298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/avr.h
102089857SobrienDEPTC_avr_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
102189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
102289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-avr.h \
102389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
102489857Sobrien  $(INCDIR)/opcode/avr.h
102589857SobrienDEPTC_cris_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
102689857Sobrien  $(srcdir)/config/tc-cris.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
102789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
102877298Sobrien  $(INCDIR)/opcode/cris.h dwarf2dbg.h
102989857SobrienDEPTC_cris_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
103089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
103189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h \
103289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
103389857Sobrien  $(INCDIR)/opcode/cris.h dwarf2dbg.h
103489857SobrienDEPTC_d10v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
103589857Sobrien  $(srcdir)/config/tc-d10v.h $(INCDIR)/coff/internal.h \
103689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
103777298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/d10v.h \
103877298Sobrien  $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h
103989857SobrienDEPTC_d10v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
104089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
104189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h \
104289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
104389857Sobrien  $(INCDIR)/opcode/d10v.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h
104489857SobrienDEPTC_d30v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
104589857Sobrien  $(srcdir)/config/tc-d30v.h $(INCDIR)/coff/internal.h \
104689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
104777298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/d30v.h
104889857SobrienDEPTC_d30v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
104989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
105089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h \
105189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
105289857Sobrien  $(INCDIR)/opcode/d30v.h
1053104834SobrienDEPTC_dlx_coff = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
1054104834Sobrien  $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-dlx.h \
1055104834Sobrien  $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1056104834Sobrien  $(INCDIR)/opcode/dlx.h
1057104834SobrienDEPTC_dlx_elf = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
1058104834Sobrien  $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1059104834Sobrien  $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1060104834Sobrien  $(srcdir)/config/tc-dlx.h $(INCDIR)/opcode/dlx.h
106189857SobrienDEPTC_fr30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
106289857Sobrien  $(srcdir)/config/tc-fr30.h $(INCDIR)/coff/internal.h \
106389857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
106489857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/fr30-desc.h \
106577298Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/fr30-opc.h \
106677298Sobrien  cgen.h
106789857SobrienDEPTC_fr30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
106889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
106989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h \
107089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
107189857Sobrien  $(srcdir)/../opcodes/fr30-desc.h $(INCDIR)/opcode/cgen.h \
107289857Sobrien  $(srcdir)/../opcodes/fr30-opc.h cgen.h
1073104834SobrienDEPTC_frv_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1074104834Sobrien  $(srcdir)/config/tc-frv.h $(INCDIR)/coff/internal.h \
1075104834Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h dwarf2dbg.h \
1076104834Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/frv-desc.h \
1077104834Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/frv-opc.h \
1078104834Sobrien  cgen.h $(BFDDIR)/libbfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/frv.h \
1079104834Sobrien  $(INCDIR)/elf/reloc-macros.h
1080104834SobrienDEPTC_frv_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1081104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1082104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-frv.h \
1083104834Sobrien  dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/frv-desc.h \
1084104834Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/frv-opc.h \
1085104834Sobrien  cgen.h $(BFDDIR)/libbfd.h $(INCDIR)/elf/frv.h $(INCDIR)/elf/reloc-macros.h
108689857SobrienDEPTC_h8300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
108789857Sobrien  $(srcdir)/config/tc-h8300.h $(INCDIR)/coff/internal.h \
108889857Sobrien  $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
108989857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/h8300.h \
109089857Sobrien  $(INCDIR)/safe-ctype.h
109189857SobrienDEPTC_h8300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
109289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
109389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h \
109489857Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/h8300.h \
109589857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/elf/h8.h $(INCDIR)/elf/reloc-macros.h
109689857SobrienDEPTC_h8500_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
109789857Sobrien  $(srcdir)/config/tc-h8500.h $(INCDIR)/coff/internal.h \
109889857Sobrien  $(INCDIR)/coff/h8500.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
109989857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/h8500-opc.h \
110089857Sobrien  $(INCDIR)/safe-ctype.h
110189857SobrienDEPTC_h8500_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
110289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
110389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h \
110489857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/h8500-opc.h \
110589857Sobrien  $(INCDIR)/safe-ctype.h
110689857SobrienDEPTC_hppa_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
110789857Sobrien  $(srcdir)/config/tc-hppa.h $(INCDIR)/coff/internal.h \
110889857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
110977298Sobrien  subsegs.h $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h
111089857SobrienDEPTC_hppa_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
111189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
111289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h \
111389857Sobrien  $(BFDDIR)/elf32-hppa.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \
111489857Sobrien  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
111577298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/hppa.h \
111677298Sobrien  dwarf2dbg.h
111789857SobrienDEPTC_ia64_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
111894536Sobrien  $(srcdir)/config/tc-ia64.h $(INCDIR)/opcode/ia64.h \
111994536Sobrien  $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \
112089857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
112177298Sobrien  dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h
112289857SobrienDEPTC_ia64_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
112389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
112489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ia64.h \
112594536Sobrien  $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h \
112689857Sobrien  $(INCDIR)/safe-ctype.h dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h
112789857SobrienDEPTC_i370_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
112889857Sobrien  $(srcdir)/config/tc-i370.h $(INCDIR)/coff/internal.h \
112989857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
113077298Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/opcode/i370.h
113189857SobrienDEPTC_i370_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
113289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
113389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h \
113489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
113589857Sobrien  struc-symbol.h $(INCDIR)/opcode/i370.h $(INCDIR)/elf/i370.h
113689857SobrienDEPTC_i386_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
113789857Sobrien  $(srcdir)/config/tc-i386.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
113889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
113977298Sobrien  dwarf2dbg.h $(INCDIR)/opcode/i386.h
114089857SobrienDEPTC_i386_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
114189857Sobrien  $(srcdir)/config/tc-i386.h $(INCDIR)/coff/internal.h \
114289857Sobrien  $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
114389857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
114477298Sobrien  $(INCDIR)/obstack.h dwarf2dbg.h $(INCDIR)/opcode/i386.h
114589857SobrienDEPTC_i386_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
114689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
114789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h \
114889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
114989857Sobrien  dwarf2dbg.h $(INCDIR)/opcode/i386.h
115089857SobrienDEPTC_i860_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
115189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
115289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h \
115389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
115489857Sobrien  $(INCDIR)/opcode/i860.h $(INCDIR)/elf/i860.h $(INCDIR)/elf/reloc-macros.h
115589857SobrienDEPTC_i960_bout = $(INCDIR)/symcat.h $(srcdir)/config/obj-bout.h \
115689857Sobrien  $(srcdir)/config/tc-i960.h $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \
115738889Sjdp  $(INCDIR)/opcode/i960.h
115889857SobrienDEPTC_i960_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
115989857Sobrien  $(srcdir)/config/tc-i960.h $(INCDIR)/coff/internal.h \
116089857Sobrien  $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
116189857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/i960.h
116289857SobrienDEPTC_i960_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
116389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
116489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h \
116589857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/i960.h
116689857SobrienDEPTC_m32r_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
116789857Sobrien  $(srcdir)/config/tc-m32r.h $(INCDIR)/coff/internal.h \
116889857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
116989857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/m32r-desc.h \
117077298Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/m32r-opc.h \
117177298Sobrien  cgen.h
117289857SobrienDEPTC_m32r_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
117389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
117489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h \
117589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
117689857Sobrien  $(srcdir)/../opcodes/m32r-desc.h $(INCDIR)/opcode/cgen.h \
117789857Sobrien  $(srcdir)/../opcodes/m32r-opc.h cgen.h
117889857SobrienDEPTC_m68hc11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
117989857Sobrien  $(srcdir)/config/tc-m68hc11.h $(INCDIR)/coff/internal.h \
118089857Sobrien  $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
118189857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
118277298Sobrien  $(INCDIR)/obstack.h $(INCDIR)/opcode/m68hc11.h dwarf2dbg.h
118389857SobrienDEPTC_m68hc11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
118489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
118589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h \
118689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
118789857Sobrien  $(INCDIR)/opcode/m68hc11.h dwarf2dbg.h
118889857SobrienDEPTC_m68k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
118989857Sobrien  $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
119089857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h subsegs.h \
119189857Sobrien  dwarf2dbg.h $(INCDIR)/opcode/m68k.h $(srcdir)/config/m68k-parse.h
119289857SobrienDEPTC_m68k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
119389857Sobrien  $(srcdir)/config/tc-m68k.h $(INCDIR)/coff/internal.h \
119489857Sobrien  $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
119589857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \
119689857Sobrien  subsegs.h dwarf2dbg.h $(INCDIR)/opcode/m68k.h $(srcdir)/config/m68k-parse.h
119789857SobrienDEPTC_m68k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
119889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
119989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h \
120089857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h subsegs.h \
120189857Sobrien  dwarf2dbg.h $(INCDIR)/opcode/m68k.h $(srcdir)/config/m68k-parse.h \
120277298Sobrien  $(INCDIR)/elf/m68k.h $(INCDIR)/elf/reloc-macros.h
120389857SobrienDEPTC_m68k_hp300 = $(INCDIR)/symcat.h $(srcdir)/config/obj-hp300.h \
120489857Sobrien  $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
120589857Sobrien  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
120689857Sobrien  $(INCDIR)/obstack.h subsegs.h dwarf2dbg.h $(INCDIR)/opcode/m68k.h \
120738889Sjdp  $(srcdir)/config/m68k-parse.h
120889857SobrienDEPTC_m88k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
120989857Sobrien  $(srcdir)/config/tc-m88k.h $(INCDIR)/coff/internal.h \
121089857Sobrien  $(INCDIR)/coff/m88k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
121189857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
121277298Sobrien  $(INCDIR)/obstack.h $(srcdir)/config/m88k-opcode.h
121389857SobrienDEPTC_m88k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
121489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
121589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h \
121689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
121789857Sobrien  $(srcdir)/config/m88k-opcode.h
121889857SobrienDEPTC_mcore_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
121989857Sobrien  $(srcdir)/config/tc-mcore.h $(INCDIR)/coff/internal.h \
122089857Sobrien  $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
122189857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/mcore-opc.h \
122289857Sobrien  $(INCDIR)/safe-ctype.h
122389857SobrienDEPTC_mcore_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
122489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
122589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h \
122689857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/mcore-opc.h \
122789857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/elf/mcore.h $(INCDIR)/elf/reloc-macros.h
122889857SobrienDEPTC_mips_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
122989857Sobrien  $(srcdir)/config/tc-mips.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
123089857Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \
1231104834Sobrien  $(INCDIR)/opcode/mips.h itbl-ops.h dwarf2dbg.h $(srcdir)/config/obj-elf.h \
123260484Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
123377298Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
123477298Sobrien  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
123589857SobrienDEPTC_mips_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
123689857Sobrien  $(srcdir)/config/tc-mips.h $(INCDIR)/coff/internal.h \
123789857Sobrien  $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
123889857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \
1239104834Sobrien  $(INCDIR)/opcode/mips.h itbl-ops.h dwarf2dbg.h $(srcdir)/config/obj-elf.h \
124089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
124189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
124289857Sobrien  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
124389857SobrienDEPTC_mips_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \
124489857Sobrien  $(srcdir)/config/tc-mips.h ecoff.h $(INCDIR)/coff/sym.h \
124589857Sobrien  $(INCDIR)/coff/ecoff.h subsegs.h $(INCDIR)/obstack.h \
124689857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/mips.h itbl-ops.h \
1247104834Sobrien  dwarf2dbg.h $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1248104834Sobrien  $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1249104834Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h
125089857SobrienDEPTC_mips_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
125189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
125289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h \
125389857Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \
1254104834Sobrien  $(INCDIR)/opcode/mips.h itbl-ops.h dwarf2dbg.h $(INCDIR)/elf/mips.h \
125589857Sobrien  $(INCDIR)/elf/reloc-macros.h ecoff.h $(INCDIR)/coff/sym.h \
125689857Sobrien  $(INCDIR)/coff/ecoff.h
125789857SobrienDEPTC_mmix_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
125889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
125989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h \
126089857Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/elf/mmix.h \
126189857Sobrien  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/mmix.h \
126289857Sobrien  $(INCDIR)/safe-ctype.h dwarf2dbg.h
126389857SobrienDEPTC_mn10200_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
126489857Sobrien  $(srcdir)/config/tc-mn10200.h $(INCDIR)/coff/internal.h \
126589857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
126677298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10200.h
126789857SobrienDEPTC_mn10200_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
126889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
126989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h \
127089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
127189857Sobrien  $(INCDIR)/opcode/mn10200.h
127289857SobrienDEPTC_mn10300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
127389857Sobrien  $(srcdir)/config/tc-mn10300.h $(INCDIR)/coff/internal.h \
127489857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
127577298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10300.h \
127677298Sobrien  dwarf2dbg.h
127789857SobrienDEPTC_mn10300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
127889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
127989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h \
128089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
128189857Sobrien  $(INCDIR)/opcode/mn10300.h dwarf2dbg.h
128289857SobrienDEPTC_ns32k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
128389857Sobrien  $(srcdir)/config/tc-ns32k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
128489857Sobrien  $(INCDIR)/opcode/ns32k.h $(INCDIR)/obstack.h
128589857SobrienDEPTC_ns32k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
128689857Sobrien  $(srcdir)/config/tc-ns32k.h $(INCDIR)/coff/internal.h \
128789857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ns32k.h \
128838889Sjdp  $(INCDIR)/obstack.h
128989857SobrienDEPTC_ns32k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
129089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
129189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h \
129277298Sobrien  $(INCDIR)/opcode/ns32k.h $(INCDIR)/obstack.h
129389857SobrienDEPTC_openrisc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
129489857Sobrien  $(srcdir)/config/tc-openrisc.h $(INCDIR)/coff/internal.h \
129589857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
129689857Sobrien  $(srcdir)/../opcodes/openrisc-desc.h $(INCDIR)/opcode/cgen.h \
129789857Sobrien  $(srcdir)/../opcodes/openrisc-opc.h cgen.h
129889857SobrienDEPTC_openrisc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
129989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
130089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h \
130189857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/openrisc-desc.h \
130289857Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/openrisc-opc.h \
130389857Sobrien  cgen.h
130491041SobrienDEPTC_or32_coff = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
130591041Sobrien  $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-or32.h \
130691041Sobrien  $(INCDIR)/coff/internal.h $(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h \
130791041Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/opcode/or32.h $(INCDIR)/elf/or32.h \
130891041Sobrien  $(INCDIR)/elf/reloc-macros.h
130991041SobrienDEPTC_or32_elf = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
131091041Sobrien  $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
131191041Sobrien  $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
131291041Sobrien  $(srcdir)/config/tc-or32.h $(INCDIR)/opcode/or32.h \
131391041Sobrien  $(INCDIR)/elf/or32.h $(INCDIR)/elf/reloc-macros.h
131489857SobrienDEPTC_pdp11_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
131589857Sobrien  $(srcdir)/config/tc-pdp11.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
131689857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pdp11.h
131789857SobrienDEPTC_pdp11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
131889857Sobrien  $(srcdir)/config/tc-pdp11.h $(INCDIR)/coff/internal.h \
131989857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
132089857Sobrien  $(INCDIR)/opcode/pdp11.h
132189857SobrienDEPTC_pdp11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
132289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
132389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h \
132489857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pdp11.h
132589857SobrienDEPTC_pj_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
132689857Sobrien  $(srcdir)/config/tc-pj.h $(INCDIR)/coff/internal.h \
132789857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
132877298Sobrien  $(INCDIR)/opcode/pj.h
132989857SobrienDEPTC_pj_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
133089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
133189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h \
133289857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pj.h
133389857SobrienDEPTC_ppc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
133489857Sobrien  $(srcdir)/config/tc-ppc.h $(INCDIR)/coff/internal.h \
133589857Sobrien  $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
133689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
133789857Sobrien  $(INCDIR)/opcode/ppc.h
133889857SobrienDEPTC_ppc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
133989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
134089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h \
134189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
134289857Sobrien  $(INCDIR)/opcode/ppc.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h \
134389857Sobrien  dwarf2dbg.h
134489857SobrienDEPTC_s390_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
134589857Sobrien  $(srcdir)/config/tc-s390.h $(INCDIR)/coff/internal.h \
134689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
134789857Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/opcode/s390.h \
134889857Sobrien  $(INCDIR)/elf/s390.h $(INCDIR)/elf/reloc-macros.h
134989857SobrienDEPTC_s390_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
135089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
135189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h \
135289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
135389857Sobrien  struc-symbol.h $(INCDIR)/opcode/s390.h $(INCDIR)/elf/s390.h \
135489857Sobrien  $(INCDIR)/elf/reloc-macros.h
135589857SobrienDEPTC_sh_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
135689857Sobrien  $(srcdir)/config/tc-sh.h $(INCDIR)/coff/internal.h \
135789857Sobrien  $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
135889857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/sh-opc.h \
135989857Sobrien  $(INCDIR)/safe-ctype.h struc-symbol.h dwarf2dbg.h
136089857SobrienDEPTC_sh_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
136189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
136289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h \
136389857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/sh-opc.h \
136489857Sobrien  $(INCDIR)/safe-ctype.h struc-symbol.h $(INCDIR)/elf/sh.h \
136578828Sobrien  $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
1366104834SobrienDEPTC_sh64_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1367104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1368104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h \
1369104834Sobrien  $(srcdir)/config/tc-sh.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
1370104834Sobrien  $(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/sh64-opc.h \
1371104834Sobrien  $(srcdir)/config/tc-sh.c subsegs.h $(INCDIR)/obstack.h \
1372104834Sobrien  $(srcdir)/../opcodes/sh-opc.h struc-symbol.h dwarf2dbg.h
137389857SobrienDEPTC_sparc_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
137489857Sobrien  $(srcdir)/config/tc-sparc.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
137589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
137677298Sobrien  $(INCDIR)/opcode/sparc.h
137789857SobrienDEPTC_sparc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
137889857Sobrien  $(srcdir)/config/tc-sparc.h $(INCDIR)/coff/internal.h \
137989857Sobrien  $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
138089857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
138189857Sobrien  $(INCDIR)/obstack.h $(INCDIR)/opcode/sparc.h
138289857SobrienDEPTC_sparc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
138389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
138489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h \
138589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
138689857Sobrien  $(INCDIR)/opcode/sparc.h $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \
138789857Sobrien  dwarf2dbg.h
138889857SobrienDEPTC_tahoe_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
138989857Sobrien  $(srcdir)/config/tc-tahoe.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
139089857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/tahoe.h
139189857SobrienDEPTC_tahoe_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
139289857Sobrien  $(srcdir)/config/tc-tahoe.h $(INCDIR)/coff/internal.h \
139389857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
139477298Sobrien  $(INCDIR)/obstack.h $(INCDIR)/opcode/tahoe.h
139589857SobrienDEPTC_tahoe_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
139689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
139789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h \
139889857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/tahoe.h
139989857SobrienDEPTC_tic30_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
140089857Sobrien  $(srcdir)/config/tc-tic30.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
140189857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h
140289857SobrienDEPTC_tic30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
140389857Sobrien  $(srcdir)/config/tc-tic30.h $(INCDIR)/coff/internal.h \
140489857Sobrien  $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
140589857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h
140689857SobrienDEPTC_tic30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
140789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
140889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic30.h \
140989857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h
141089857SobrienDEPTC_tic54x_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
141189857Sobrien  $(srcdir)/config/tc-tic54x.h $(INCDIR)/coff/internal.h \
141289857Sobrien  $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \
141389857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h sb.h macro.h \
141477298Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/opcode/tic54x.h
141589857SobrienDEPTC_tic54x_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
141689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
141789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic54x.h \
141889857Sobrien  $(INCDIR)/safe-ctype.h sb.h macro.h subsegs.h $(INCDIR)/obstack.h \
141989857Sobrien  struc-symbol.h $(INCDIR)/opcode/tic54x.h $(srcdir)/config/obj-coff.h \
142077298Sobrien  $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h \
142177298Sobrien  $(BFDDIR)/libcoff.h
142289857SobrienDEPTC_tic80_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
142389857Sobrien  $(srcdir)/config/tc-tic80.h $(INCDIR)/coff/internal.h \
142489857Sobrien  $(INCDIR)/coff/tic80.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
142589857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic80.h
142689857SobrienDEPTC_tic80_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
142789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
142889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic80.h \
142989857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic80.h
143089857SobrienDEPTC_vax_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
143189857Sobrien  $(srcdir)/config/tc-vax.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
1432104834Sobrien  $(srcdir)/config/vax-inst.h $(INCDIR)/obstack.h subsegs.h \
1433104834Sobrien  $(INCDIR)/opcode/vax.h $(INCDIR)/safe-ctype.h
143489857SobrienDEPTC_vax_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
143589857Sobrien  $(srcdir)/config/tc-vax.h $(INCDIR)/coff/internal.h \
143689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(srcdir)/config/vax-inst.h \
1437104834Sobrien  $(INCDIR)/obstack.h subsegs.h $(INCDIR)/opcode/vax.h \
1438104834Sobrien  $(INCDIR)/safe-ctype.h
143989857SobrienDEPTC_vax_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
144089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
144189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h \
1442104834Sobrien  $(srcdir)/config/vax-inst.h $(INCDIR)/obstack.h subsegs.h \
1443104834Sobrien  $(INCDIR)/elf/vax.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/vax.h \
144489857Sobrien  $(INCDIR)/safe-ctype.h
144589857SobrienDEPTC_vax_vms = $(INCDIR)/symcat.h $(srcdir)/config/obj-vms.h \
144689857Sobrien  $(srcdir)/config/tc-vax.h $(INCDIR)/aout/stab_gnu.h \
144789857Sobrien  $(INCDIR)/aout/stab.def $(srcdir)/config/vax-inst.h \
1448104834Sobrien  $(INCDIR)/obstack.h subsegs.h $(INCDIR)/opcode/vax.h \
1449104834Sobrien  $(INCDIR)/safe-ctype.h
145089857SobrienDEPTC_w65_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
145189857Sobrien  $(srcdir)/config/tc-w65.h $(INCDIR)/coff/internal.h \
145289857Sobrien  $(INCDIR)/coff/w65.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
145377298Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/w65-opc.h
145489857SobrienDEPTC_w65_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
145589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
145689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h \
145789857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/w65-opc.h
145889857SobrienDEPTC_v850_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
145994536Sobrien  $(srcdir)/config/tc-v850.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h \
146094536Sobrien  $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
146194536Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
146294536Sobrien  $(INCDIR)/opcode/v850.h dwarf2dbg.h
146394536SobrienDEPTC_v850_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
146494536Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
146594536Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h \
146694536Sobrien  $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
146777298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/v850.h \
146877298Sobrien  dwarf2dbg.h
146989857SobrienDEPTC_xstormy16_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
147089857Sobrien  $(srcdir)/config/tc-xstormy16.h $(INCDIR)/coff/internal.h \
147189857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
147289857Sobrien  $(srcdir)/../opcodes/xstormy16-desc.h $(INCDIR)/opcode/cgen.h \
147389857Sobrien  $(srcdir)/../opcodes/xstormy16-opc.h cgen.h
147489857SobrienDEPTC_xstormy16_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
147589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
147689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h \
147789857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/xstormy16-desc.h \
147889857Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/xstormy16-opc.h \
147989857Sobrien  cgen.h
148089857SobrienDEPTC_z8k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
148177298Sobrien  $(srcdir)/config/tc-z8k.h $(INCDIR)/coff/internal.h \
148289857Sobrien  $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
148389857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/z8k-opc.h
148489857SobrienDEPTC_z8k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
148560484Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
148689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h \
148789857Sobrien  $(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/z8k-opc.h
148860484SobrienDEPTC_hppa_som = $(srcdir)/config/tc-hppa.h subsegs.h \
148938889Sjdp  $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h \
149038889Sjdp  $(BFDDIR)/som.h
149160484SobrienDEPTC_i386_multi = $(DEPTC_i386_aout) $(DEPTC_i386_coff) \
149260484Sobrien  $(DEPTC_i386_elf)
149360484SobrienDEPTC_mips_multi = $(DEPTC_mips_coff) $(DEPTC_mips_ecoff) \
149460484Sobrien  $(DEPTC_mips_elf)
149577298SobrienDEPTC_cris_multi = $(DEPTC_cris_aout) $(DEPTC_cris_elf)
149689857SobrienDEPOBJ_a29k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
149789857Sobrien  $(srcdir)/config/tc-a29k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
149889857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
149989857SobrienDEPOBJ_a29k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
150089857Sobrien  $(srcdir)/config/tc-a29k.h $(INCDIR)/coff/internal.h \
150189857Sobrien  $(INCDIR)/coff/a29k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
150277298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
150389857SobrienDEPOBJ_a29k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
150489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
150589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h \
150689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1507104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
150889857SobrienDEPOBJ_alpha_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
150989857Sobrien  $(srcdir)/config/tc-alpha.h $(INCDIR)/coff/internal.h \
151089857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
151189857Sobrien  subsegs.h
151289857SobrienDEPOBJ_alpha_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \
151389857Sobrien  $(srcdir)/config/tc-alpha.h ecoff.h $(INCDIR)/coff/sym.h \
151489857Sobrien  $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
151589857Sobrien  $(INCDIR)/bfdlink.h $(BFDDIR)/libecoff.h
151689857SobrienDEPOBJ_alpha_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
151789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
151889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h \
151989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1520104834Sobrien  struc-symbol.h ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
152177298Sobrien  $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \
152260484Sobrien  $(INCDIR)/aout/aout64.h
152389857SobrienDEPOBJ_alpha_evax = $(INCDIR)/symcat.h $(srcdir)/config/obj-evax.h \
152489857Sobrien  $(srcdir)/config/tc-alpha.h
152589857SobrienDEPOBJ_arc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
152689857Sobrien  $(srcdir)/config/tc-arc.h $(INCDIR)/coff/internal.h \
152789857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h struc-symbol.h \
152877298Sobrien  $(INCDIR)/obstack.h subsegs.h
152989857SobrienDEPOBJ_arc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
153089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
153189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h \
153289857Sobrien  struc-symbol.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
153389857Sobrien  $(INCDIR)/aout/aout64.h
153489857SobrienDEPOBJ_arm_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
153589857Sobrien  $(srcdir)/config/tc-arm.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
153689857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
153789857SobrienDEPOBJ_arm_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
153889857Sobrien  $(srcdir)/config/tc-arm.h $(INCDIR)/coff/internal.h \
153989857Sobrien  $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
154077298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
154189857SobrienDEPOBJ_arm_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
154289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
154389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h \
154489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1545104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
154689857SobrienDEPOBJ_avr_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
154789857Sobrien  $(srcdir)/config/tc-avr.h $(INCDIR)/coff/internal.h \
154889857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
154989857Sobrien  subsegs.h
155089857SobrienDEPOBJ_avr_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
155189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
155289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-avr.h \
155389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1554104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
155589857SobrienDEPOBJ_cris_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
155689857Sobrien  $(srcdir)/config/tc-cris.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
155789857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
155889857SobrienDEPOBJ_cris_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
155989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
156089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h \
156189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1562104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
156389857SobrienDEPOBJ_d10v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
156489857Sobrien  $(srcdir)/config/tc-d10v.h $(INCDIR)/coff/internal.h \
156589857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
156689857Sobrien  subsegs.h
156789857SobrienDEPOBJ_d10v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
156889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
156989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h \
157089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1571104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
157289857SobrienDEPOBJ_d30v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
157389857Sobrien  $(srcdir)/config/tc-d30v.h $(INCDIR)/coff/internal.h \
157489857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
157589857Sobrien  subsegs.h
157689857SobrienDEPOBJ_d30v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
157789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
157889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h \
157989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1580104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
1581104834SobrienDEPOBJ_dlx_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1582104834Sobrien  $(srcdir)/config/tc-dlx.h $(INCDIR)/coff/internal.h \
1583104834Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
1584104834Sobrien  subsegs.h
1585104834SobrienDEPOBJ_dlx_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1586104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1587104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-dlx.h \
1588104834Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1589104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
159089857SobrienDEPOBJ_fr30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
159189857Sobrien  $(srcdir)/config/tc-fr30.h $(INCDIR)/coff/internal.h \
159289857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
159389857Sobrien  subsegs.h
159489857SobrienDEPOBJ_fr30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
159589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
159689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h \
159789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1598104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
1599104834SobrienDEPOBJ_frv_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1600104834Sobrien  $(srcdir)/config/tc-frv.h $(INCDIR)/coff/internal.h \
1601104834Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
1602104834Sobrien  subsegs.h
1603104834SobrienDEPOBJ_frv_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1604104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1605104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-frv.h \
1606104834Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1607104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
160889857SobrienDEPOBJ_h8300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
160989857Sobrien  $(srcdir)/config/tc-h8300.h $(INCDIR)/coff/internal.h \
161089857Sobrien  $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
161177298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
161289857SobrienDEPOBJ_h8300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
161389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
161489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h \
161589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1616104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
161789857SobrienDEPOBJ_h8500_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
161889857Sobrien  $(srcdir)/config/tc-h8500.h $(INCDIR)/coff/internal.h \
161989857Sobrien  $(INCDIR)/coff/h8500.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
162089857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
162189857SobrienDEPOBJ_h8500_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
162289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
162389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h \
162489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1625104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
162689857SobrienDEPOBJ_hppa_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
162789857Sobrien  $(srcdir)/config/tc-hppa.h $(INCDIR)/coff/internal.h \
162889857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
162989857Sobrien  subsegs.h
163089857SobrienDEPOBJ_hppa_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
163189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
163289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h \
163389857Sobrien  $(BFDDIR)/elf32-hppa.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \
163489857Sobrien  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
1635104834Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/aout/aout64.h
163689857SobrienDEPOBJ_ia64_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1637104834Sobrien  $(srcdir)/config/tc-ia64.h $(INCDIR)/opcode/ia64.h \
1638104834Sobrien  $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \
163989857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
164089857Sobrien  subsegs.h
164189857SobrienDEPOBJ_ia64_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
164289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
164389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ia64.h \
1644104834Sobrien  $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h \
164589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1646104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
164789857SobrienDEPOBJ_i370_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
164889857Sobrien  $(srcdir)/config/tc-i370.h $(INCDIR)/coff/internal.h \
164989857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
165089857Sobrien  subsegs.h
165189857SobrienDEPOBJ_i370_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
165289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
165389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h \
165489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1655104834Sobrien  struc-symbol.h $(INCDIR)/elf/i370.h $(INCDIR)/aout/aout64.h
165689857SobrienDEPOBJ_i386_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
165789857Sobrien  $(srcdir)/config/tc-i386.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
165889857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
165989857SobrienDEPOBJ_i386_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
166089857Sobrien  $(srcdir)/config/tc-i386.h $(INCDIR)/coff/internal.h \
166189857Sobrien  $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
166277298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
166389857SobrienDEPOBJ_i386_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
166489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
166589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h \
166689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1667104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
166889857SobrienDEPOBJ_i860_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
166989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
167089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h \
167189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1672104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
167389857SobrienDEPOBJ_i960_bout = $(INCDIR)/symcat.h $(srcdir)/config/obj-bout.h \
167489857Sobrien  $(srcdir)/config/tc-i960.h $(INCDIR)/obstack.h
167589857SobrienDEPOBJ_i960_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
167689857Sobrien  $(srcdir)/config/tc-i960.h $(INCDIR)/coff/internal.h \
167789857Sobrien  $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
167877298Sobrien  $(INCDIR)/obstack.h subsegs.h
167989857SobrienDEPOBJ_i960_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
168089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
168189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h \
168289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1683104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
168489857SobrienDEPOBJ_m32r_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
168589857Sobrien  $(srcdir)/config/tc-m32r.h $(INCDIR)/coff/internal.h \
168689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
168789857Sobrien  subsegs.h
168889857SobrienDEPOBJ_m32r_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
168989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
169089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h \
169189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1692104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
169389857SobrienDEPOBJ_m68hc11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
169489857Sobrien  $(srcdir)/config/tc-m68hc11.h $(INCDIR)/coff/internal.h \
169589857Sobrien  $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
169677298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
169789857SobrienDEPOBJ_m68hc11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
169889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
169989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h \
170089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1701104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
170289857SobrienDEPOBJ_m68k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
170360484Sobrien  $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
170477298Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
170589857SobrienDEPOBJ_m68k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
170689857Sobrien  $(srcdir)/config/tc-m68k.h $(INCDIR)/coff/internal.h \
170789857Sobrien  $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
170877298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
170989857SobrienDEPOBJ_m68k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
171089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
171189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h \
171289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1713104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
171489857SobrienDEPOBJ_m68k_hp300 = $(srcdir)/config/obj-aout.c $(INCDIR)/symcat.h \
171589857Sobrien  $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
171677298Sobrien  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
171738889Sjdp  $(INCDIR)/obstack.h
171889857SobrienDEPOBJ_m88k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
171989857Sobrien  $(srcdir)/config/tc-m88k.h $(INCDIR)/coff/internal.h \
172089857Sobrien  $(INCDIR)/coff/m88k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
172177298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
172289857SobrienDEPOBJ_m88k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
172389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
172489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h \
172589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1726104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
172789857SobrienDEPOBJ_mcore_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
172889857Sobrien  $(srcdir)/config/tc-mcore.h $(INCDIR)/coff/internal.h \
172989857Sobrien  $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
173089857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
173189857SobrienDEPOBJ_mcore_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
173289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
173389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h \
173489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1735104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
173689857SobrienDEPOBJ_mips_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
173789857Sobrien  $(srcdir)/config/tc-mips.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
173889857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
173989857SobrienDEPOBJ_mips_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
174089857Sobrien  $(srcdir)/config/tc-mips.h $(INCDIR)/coff/internal.h \
174189857Sobrien  $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
174289857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
174389857SobrienDEPOBJ_mips_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \
174489857Sobrien  $(srcdir)/config/tc-mips.h ecoff.h $(INCDIR)/coff/sym.h \
174589857Sobrien  $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
174689857Sobrien  $(INCDIR)/bfdlink.h $(BFDDIR)/libecoff.h
174789857SobrienDEPOBJ_mips_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
174889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
174989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h \
175089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1751104834Sobrien  struc-symbol.h ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
175277298Sobrien  $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/aout/aout64.h
175389857SobrienDEPOBJ_mmix_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
175489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
175589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h \
175689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1757104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
175889857SobrienDEPOBJ_mn10200_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
175989857Sobrien  $(srcdir)/config/tc-mn10200.h $(INCDIR)/coff/internal.h \
176089857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
176189857Sobrien  subsegs.h
176289857SobrienDEPOBJ_mn10200_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
176389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
176489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h \
176589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1766104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
176789857SobrienDEPOBJ_mn10300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
176889857Sobrien  $(srcdir)/config/tc-mn10300.h $(INCDIR)/coff/internal.h \
176989857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
177089857Sobrien  subsegs.h
177189857SobrienDEPOBJ_mn10300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
177289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
177389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h \
177489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1775104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
177689857SobrienDEPOBJ_ns32k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
177789857Sobrien  $(srcdir)/config/tc-ns32k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
177889857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
177989857SobrienDEPOBJ_ns32k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
178089857Sobrien  $(srcdir)/config/tc-ns32k.h $(INCDIR)/coff/internal.h \
178189857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
178289857Sobrien  subsegs.h
178389857SobrienDEPOBJ_ns32k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
178489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
178589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h \
178689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1787104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
178889857SobrienDEPOBJ_openrisc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
178989857Sobrien  $(srcdir)/config/tc-openrisc.h $(INCDIR)/coff/internal.h \
179089857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
179189857Sobrien  subsegs.h
179289857SobrienDEPOBJ_openrisc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
179389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
179489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h \
179589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1796104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
179791041SobrienDEPOBJ_or32_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
179891041Sobrien  $(srcdir)/config/tc-or32.h $(INCDIR)/coff/internal.h \
179991041Sobrien  $(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
180091041Sobrien  $(INCDIR)/obstack.h subsegs.h
180191041SobrienDEPOBJ_or32_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
180291041Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
180391041Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-or32.h \
180491041Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1805104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
180689857SobrienDEPOBJ_pdp11_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
180789857Sobrien  $(srcdir)/config/tc-pdp11.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
180889857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
180989857SobrienDEPOBJ_pdp11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
181089857Sobrien  $(srcdir)/config/tc-pdp11.h $(INCDIR)/coff/internal.h \
181189857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
181289857Sobrien  subsegs.h
181389857SobrienDEPOBJ_pdp11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
181489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
181589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h \
181689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1817104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
181889857SobrienDEPOBJ_pj_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
181989857Sobrien  $(srcdir)/config/tc-pj.h $(INCDIR)/coff/internal.h \
182089857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
182189857Sobrien  subsegs.h
182289857SobrienDEPOBJ_pj_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
182389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
182489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h \
182589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1826104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
182789857SobrienDEPOBJ_ppc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
182889857Sobrien  $(srcdir)/config/tc-ppc.h $(INCDIR)/coff/internal.h \
182989857Sobrien  $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
183077298Sobrien  $(INCDIR)/obstack.h subsegs.h
183189857SobrienDEPOBJ_ppc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
183289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
183389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h \
183489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1835104834Sobrien  struc-symbol.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h \
1836104834Sobrien  $(INCDIR)/aout/aout64.h
183789857SobrienDEPOBJ_s390_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
183889857Sobrien  $(srcdir)/config/tc-s390.h $(INCDIR)/coff/internal.h \
183989857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
184089857Sobrien  subsegs.h
184189857SobrienDEPOBJ_s390_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
184289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
184389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h \
184489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1845104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
184689857SobrienDEPOBJ_sh_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
184789857Sobrien  $(srcdir)/config/tc-sh.h $(INCDIR)/coff/internal.h \
184889857Sobrien  $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
184977298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
185089857SobrienDEPOBJ_sh_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
185189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
185289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h \
185389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1854104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
1855104834SobrienDEPOBJ_sh64_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1856104834Sobrien  $(srcdir)/config/tc-sh64.h $(srcdir)/config/tc-sh.h \
1857104834Sobrien  $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \
1858104834Sobrien  $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
1859104834Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
1860104834SobrienDEPOBJ_sh64_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1861104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1862104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h \
1863104834Sobrien  $(srcdir)/config/tc-sh.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
1864104834Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1865104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
186689857SobrienDEPOBJ_sparc_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
186789857Sobrien  $(srcdir)/config/tc-sparc.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
186889857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
186989857SobrienDEPOBJ_sparc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
187089857Sobrien  $(srcdir)/config/tc-sparc.h $(INCDIR)/coff/internal.h \
187189857Sobrien  $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
187277298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
187389857SobrienDEPOBJ_sparc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
187489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
187589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h \
187689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1877104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
187889857SobrienDEPOBJ_tahoe_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
187989857Sobrien  $(srcdir)/config/tc-tahoe.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
188089857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
188189857SobrienDEPOBJ_tahoe_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
188289857Sobrien  $(srcdir)/config/tc-tahoe.h $(INCDIR)/coff/internal.h \
188389857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
188489857Sobrien  subsegs.h
188589857SobrienDEPOBJ_tahoe_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
188689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
188789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h \
188889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1889104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
189089857SobrienDEPOBJ_tic30_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
189189857Sobrien  $(srcdir)/config/tc-tic30.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
189289857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
189389857SobrienDEPOBJ_tic30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
189489857Sobrien  $(srcdir)/config/tc-tic30.h $(INCDIR)/coff/internal.h \
189589857Sobrien  $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
189677298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
189789857SobrienDEPOBJ_tic30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
189889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
189989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic30.h \
190089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1901104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
190289857SobrienDEPOBJ_tic54x_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
190389857Sobrien  $(srcdir)/config/tc-tic54x.h $(INCDIR)/coff/internal.h \
190489857Sobrien  $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \
190577298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
190689857SobrienDEPOBJ_tic54x_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
190789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
190889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic54x.h \
190989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1910104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
191189857SobrienDEPOBJ_tic80_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
191289857Sobrien  $(srcdir)/config/tc-tic80.h $(INCDIR)/coff/internal.h \
191389857Sobrien  $(INCDIR)/coff/tic80.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
191489857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
191589857SobrienDEPOBJ_tic80_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
191689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
191789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic80.h \
191889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1919104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
192089857SobrienDEPOBJ_vax_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
192189857Sobrien  $(srcdir)/config/tc-vax.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
192289857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
192389857SobrienDEPOBJ_vax_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
192489857Sobrien  $(srcdir)/config/tc-vax.h $(INCDIR)/coff/internal.h \
192577298Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
192660484Sobrien  subsegs.h
192789857SobrienDEPOBJ_vax_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
192889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
192989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h \
193089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1931104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
193289857SobrienDEPOBJ_vax_vms = $(INCDIR)/symcat.h $(srcdir)/config/obj-vms.h \
193389857Sobrien  $(srcdir)/config/tc-vax.h $(INCDIR)/aout/stab_gnu.h \
193489857Sobrien  $(INCDIR)/aout/stab.def $(INCDIR)/safe-ctype.h subsegs.h \
193577298Sobrien  $(INCDIR)/obstack.h
193689857SobrienDEPOBJ_w65_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
193789857Sobrien  $(srcdir)/config/tc-w65.h $(INCDIR)/coff/internal.h \
193889857Sobrien  $(INCDIR)/coff/w65.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
193977298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
194089857SobrienDEPOBJ_w65_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
194189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
194289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h \
194389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1944104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
194589857SobrienDEPOBJ_v850_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1946104834Sobrien  $(srcdir)/config/tc-v850.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h \
1947104834Sobrien  $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1948104834Sobrien  $(INCDIR)/obstack.h subsegs.h
194989857SobrienDEPOBJ_v850_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
195089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
195189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h \
1952104834Sobrien  $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
1953104834Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/aout/aout64.h
195489857SobrienDEPOBJ_xstormy16_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
195589857Sobrien  $(srcdir)/config/tc-xstormy16.h $(INCDIR)/coff/internal.h \
195689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
195789857Sobrien  subsegs.h
195889857SobrienDEPOBJ_xstormy16_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
195989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
196089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h \
196189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1962104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
196389857SobrienDEPOBJ_z8k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
196489857Sobrien  $(srcdir)/config/tc-z8k.h $(INCDIR)/coff/internal.h \
196589857Sobrien  $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
196677298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
196789857SobrienDEPOBJ_z8k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
196889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
196989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h \
197089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1971104834Sobrien  struc-symbol.h $(INCDIR)/aout/aout64.h
197260484SobrienDEPOBJ_hppa_som = $(srcdir)/config/obj-som.h subsegs.h \
197338889Sjdp  $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(BFDDIR)/som.h \
197438889Sjdp  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
197560484SobrienDEPOBJ_i386_multi = $(DEPOBJ_i386_aout) $(DEPOBJ_i386_coff) \
197660484Sobrien  $(DEPOBJ_i386_elf)
197760484SobrienDEPOBJ_mips_multi = $(DEPOBJ_mips_coff) $(DEPOBJ_mips_ecoff) \
197860484Sobrien  $(DEPOBJ_mips_elf)
197977298SobrienDEPOBJ_cris_multi = $(DEPOBJ_cris_aout) $(DEPOBJ_cris_elf)
198038889SjdpDEP_a29k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-a29k.h \
198138889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
198238889SjdpDEP_a29k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-a29k.h \
198389857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/a29k.h \
198489857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
198589857SobrienDEP_a29k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
198689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
198789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h
198889857SobrienDEP_alpha_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-alpha.h \
198989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
199038889Sjdp  $(INCDIR)/bfdlink.h
199138889SjdpDEP_alpha_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-alpha.h \
199238889Sjdp  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
199389857SobrienDEP_alpha_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
199489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
199589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h
199638889SjdpDEP_alpha_evax = $(srcdir)/config/obj-evax.h $(srcdir)/config/tc-alpha.h
199738889SjdpDEP_arc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arc.h \
199889857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
199989857Sobrien  $(INCDIR)/bfdlink.h
200089857SobrienDEP_arc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
200189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
200289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h
200338889SjdpDEP_arm_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-arm.h \
200438889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
200538889SjdpDEP_arm_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arm.h \
200689857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/arm.h \
200789857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
200889857SobrienDEP_arm_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
200989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
201089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h
201189857SobrienDEP_avr_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-avr.h \
201289857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
201338889Sjdp  $(INCDIR)/bfdlink.h
201489857SobrienDEP_avr_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
201589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
201689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-avr.h
201777298SobrienDEP_cris_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-cris.h \
201877298Sobrien  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
201989857SobrienDEP_cris_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
202089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
202189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h
202238889SjdpDEP_d10v_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-d10v.h \
202389857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
202489857Sobrien  $(INCDIR)/bfdlink.h
202589857SobrienDEP_d10v_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
202689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
202789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h
202860484SobrienDEP_d30v_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-d30v.h \
202989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
203089857Sobrien  $(INCDIR)/bfdlink.h
203189857SobrienDEP_d30v_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
203289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
203389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h
2034104834SobrienDEP_dlx_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-dlx.h \
2035104834Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
2036104834Sobrien  $(INCDIR)/bfdlink.h
2037104834SobrienDEP_dlx_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2038104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2039104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-dlx.h
204060484SobrienDEP_fr30_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-fr30.h \
204189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
204289857Sobrien  $(INCDIR)/bfdlink.h
204389857SobrienDEP_fr30_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
204489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
204589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h
2046104834SobrienDEP_frv_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-frv.h \
2047104834Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
2048104834Sobrien  $(INCDIR)/bfdlink.h
2049104834SobrienDEP_frv_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2050104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2051104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-frv.h
205238889SjdpDEP_h8300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8300.h \
205389857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8300.h \
205489857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
205589857SobrienDEP_h8300_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
205689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
205789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h
205838889SjdpDEP_h8500_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8500.h \
205989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8500.h \
206089857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
206189857SobrienDEP_h8500_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
206289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
206389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h
206489857SobrienDEP_hppa_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-hppa.h \
206589857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
206638889Sjdp  $(INCDIR)/bfdlink.h
206789857SobrienDEP_hppa_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
206889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
206989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h \
207089857Sobrien  $(BFDDIR)/elf32-hppa.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \
207189857Sobrien  $(INCDIR)/elf/reloc-macros.h
207277298SobrienDEP_ia64_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ia64.h \
2073104834Sobrien  $(INCDIR)/opcode/ia64.h $(INCDIR)/symcat.h $(INCDIR)/elf/ia64.h \
2074104834Sobrien  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \
2075104834Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
207689857SobrienDEP_ia64_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
207789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2078104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ia64.h \
2079104834Sobrien  $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h
208060484SobrienDEP_i370_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i370.h \
208189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
208289857Sobrien  $(INCDIR)/bfdlink.h
208389857SobrienDEP_i370_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
208489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
208589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h
208638889SjdpDEP_i386_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i386.h \
208738889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
208838889SjdpDEP_i386_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i386.h \
208989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h \
209089857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
209189857SobrienDEP_i386_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
209289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
209389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h
209489857SobrienDEP_i860_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
209589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
209689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h
209738889SjdpDEP_i960_bout = $(srcdir)/config/obj-bout.h $(srcdir)/config/tc-i960.h
209838889SjdpDEP_i960_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i960.h \
209989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/i960.h \
210089857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
210189857SobrienDEP_i960_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
210289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
210389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h
210489857SobrienDEP_m32r_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m32r.h \
210589857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
210638889Sjdp  $(INCDIR)/bfdlink.h
210789857SobrienDEP_m32r_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
210889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
210989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h
211077298SobrienDEP_m68hc11_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68hc11.h \
211189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h \
211289857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
211389857SobrienDEP_m68hc11_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
211489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
211589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h
211638889SjdpDEP_m68k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
211738889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
211838889SjdpDEP_m68k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68k.h \
211989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h \
212089857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
212189857SobrienDEP_m68k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
212289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
212389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h
212438889SjdpDEP_m68k_hp300 = $(srcdir)/config/obj-hp300.h $(srcdir)/config/obj-aout.h \
212538889Sjdp  $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
212638889SjdpDEP_m88k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m88k.h \
212789857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/m88k.h \
212889857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
212989857SobrienDEP_m88k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
213089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
213189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h
213260484SobrienDEP_mcore_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mcore.h \
213389857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/mcore.h \
213489857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
213589857SobrienDEP_mcore_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
213689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
213789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h
213838889SjdpDEP_mips_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-mips.h \
213938889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
214038889SjdpDEP_mips_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mips.h \
214189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/mipspe.h \
214289857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
214338889SjdpDEP_mips_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-mips.h \
214438889Sjdp  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
214589857SobrienDEP_mips_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
214689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
214789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h
214889857SobrienDEP_mmix_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
214989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
215089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h
215138889SjdpDEP_mn10200_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10200.h \
215289857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
215389857Sobrien  $(INCDIR)/bfdlink.h
215489857SobrienDEP_mn10200_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
215589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
215689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h
215738889SjdpDEP_mn10300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10300.h \
215889857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
215989857Sobrien  $(INCDIR)/bfdlink.h
216089857SobrienDEP_mn10300_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
216189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
216289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h
216338889SjdpDEP_ns32k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-ns32k.h \
216438889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
216538889SjdpDEP_ns32k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ns32k.h \
216689857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
216789857Sobrien  $(INCDIR)/bfdlink.h
216889857SobrienDEP_ns32k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
216989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
217089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h
217189857SobrienDEP_openrisc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-openrisc.h \
217289857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
217389857Sobrien  $(INCDIR)/bfdlink.h
217489857SobrienDEP_openrisc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
217589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
217689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h
217791041SobrienDEP_or32_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-or32.h \
217891041Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/or32.h \
217991041Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
218091041SobrienDEP_or32_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
218191041Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
218291041Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-or32.h
218389857SobrienDEP_pdp11_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-pdp11.h \
218489857Sobrien  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
218589857SobrienDEP_pdp11_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-pdp11.h \
218689857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
218789857Sobrien  $(INCDIR)/bfdlink.h
218889857SobrienDEP_pdp11_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
218989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
219089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h
219160484SobrienDEP_pj_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-pj.h \
219289857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
219389857Sobrien  $(INCDIR)/bfdlink.h
219489857SobrienDEP_pj_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
219589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
219689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h
219738889SjdpDEP_ppc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ppc.h \
219889857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6000.h \
219989857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
220089857SobrienDEP_ppc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
220189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
220289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h
220389857SobrienDEP_s390_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-s390.h \
220489857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
220538889Sjdp  $(INCDIR)/bfdlink.h
220689857SobrienDEP_s390_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
220789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
220889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h
220938889SjdpDEP_sh_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sh.h \
221089857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sh.h \
221189857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
221289857SobrienDEP_sh_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
221389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
221489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h
2215104834SobrienDEP_sh64_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sh64.h \
2216104834Sobrien  $(srcdir)/config/tc-sh.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
2217104834Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sh.h \
2218104834Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
2219104834SobrienDEP_sh64_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2220104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2221104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h \
2222104834Sobrien  $(srcdir)/config/tc-sh.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h
222338889SjdpDEP_sparc_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-sparc.h \
222438889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
222538889SjdpDEP_sparc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sparc.h \
222689857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sparc.h \
222789857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
222889857SobrienDEP_sparc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
222989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
223089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h
223138889SjdpDEP_tahoe_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tahoe.h \
223238889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
223338889SjdpDEP_tahoe_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tahoe.h \
223489857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
223589857Sobrien  $(INCDIR)/bfdlink.h
223689857SobrienDEP_tahoe_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
223789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
223889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h
223938889SjdpDEP_tic30_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tic30.h \
224038889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
224138889SjdpDEP_tic30_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic30.h \
224289857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic30.h \
224389857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
224489857SobrienDEP_tic30_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
224589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
224689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic30.h
224777298SobrienDEP_tic54x_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic54x.h \
224889857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic54x.h \
224989857Sobrien  $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
225089857SobrienDEP_tic54x_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
225189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
225289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic54x.h
225360484SobrienDEP_tic80_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic80.h \
225489857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic80.h \
225589857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
225689857SobrienDEP_tic80_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
225789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
225889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic80.h
225938889SjdpDEP_vax_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-vax.h \
226038889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
226138889SjdpDEP_vax_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-vax.h \
226289857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
226389857Sobrien  $(INCDIR)/bfdlink.h
226489857SobrienDEP_vax_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
226589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
226689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h
226738889SjdpDEP_vax_vms = $(srcdir)/config/obj-vms.h $(srcdir)/config/tc-vax.h \
226838889Sjdp  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
226938889SjdpDEP_w65_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-w65.h \
227089857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/w65.h \
227189857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
227289857SobrienDEP_w65_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
227389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
227489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h
227589857SobrienDEP_v850_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-v850.h \
2276104834Sobrien  $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/symcat.h \
2277104834Sobrien  $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
227889857SobrienDEP_v850_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
227989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2280104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h \
2281104834Sobrien  $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h
228289857SobrienDEP_xstormy16_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-xstormy16.h \
228389857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
228489857Sobrien  $(INCDIR)/bfdlink.h
228589857SobrienDEP_xstormy16_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
228689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
228789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h
228838889SjdpDEP_z8k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-z8k.h \
228989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/z8k.h \
229089857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
229189857SobrienDEP_z8k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
229289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
229389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h
229438889SjdpDEP_hppa_som = $(BFDDIR)/som.h
229560484SobrienDEP_i386_multi = $(DEP_i386_aout) $(DEP_i386_coff) \
229660484Sobrien  $(DEP_i386_elf)
229738889SjdpDEP_mips_multi = $(DEP_mips_coff) $(DEP_mips_ecoff) \
229838889Sjdp  $(DEP_mips_elf)
229977298SobrienDEP_cris_multi = $(DEP_cris_aout) $(DEP_cris_elf)
230077298SobrienBMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.
230177298Sobrien#MKDEP    DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.
230289857Sobrienapp.o: app.c $(INCDIR)/symcat.h
230389857Sobrienas.o: as.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h \
230489857Sobrien  output-file.h sb.h macro.h dwarf2dbg.h
230589857Sobrienatof-generic.o: atof-generic.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h
230689857Sobrienbignum-copy.o: bignum-copy.c $(INCDIR)/symcat.h
230789857Sobriencond.o: cond.c $(INCDIR)/symcat.h macro.h sb.h $(INCDIR)/obstack.h
230889857Sobriendepend.o: depend.c $(INCDIR)/symcat.h
230989857Sobriendwarf2dbg.o: dwarf2dbg.c $(INCDIR)/symcat.h dwarf2dbg.h \
231089857Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/elf/dwarf2.h
231189857Sobrienecoff.o: ecoff.c $(INCDIR)/symcat.h ecoff.h
231289857Sobrienehopt.o: ehopt.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h \
231377298Sobrien  $(INCDIR)/elf/dwarf2.h
231489857Sobrienexpr.o: expr.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
231589857Sobrien  $(INCDIR)/obstack.h
231689857Sobrienflonum-copy.o: flonum-copy.c $(INCDIR)/symcat.h
231777298Sobrienflonum-konst.o: flonum-konst.c
231877298Sobrienflonum-mult.o: flonum-mult.c
231989857Sobrienfrags.o: frags.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h
232089857Sobrienhash.o: hash.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
232189857Sobrien  $(INCDIR)/obstack.h
232289857Sobrieninput-file.o: input-file.c $(INCDIR)/symcat.h input-file.h \
232389857Sobrien  $(INCDIR)/safe-ctype.h
232489857Sobrieninput-scrub.o: input-scrub.c $(INCDIR)/symcat.h input-file.h \
232589857Sobrien  sb.h
232694536Sobrienlisting.o: listing.c $(INCDIR)/symcat.h $(INCDIR)/obstack.h \
232794536Sobrien  $(INCDIR)/safe-ctype.h input-file.h subsegs.h
232889857Sobrienliteral.o: literal.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h
232989857Sobrienmacro.o: macro.c $(INCDIR)/safe-ctype.h sb.h macro.h
233089857Sobrienmessages.o: messages.c $(INCDIR)/symcat.h
233189857Sobrienoutput-file.o: output-file.c $(INCDIR)/symcat.h output-file.h
233289857Sobrienread.o: read.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
233389857Sobrien  subsegs.h $(INCDIR)/obstack.h sb.h macro.h ecoff.h
233477298Sobriensb.o: sb.c sb.h
233589857Sobrienstabs.o: stabs.c $(INCDIR)/symcat.h $(INCDIR)/obstack.h \
233689857Sobrien  subsegs.h ecoff.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
233789857Sobriensubsegs.o: subsegs.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h
233889857Sobriensymbols.o: symbols.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
233989857Sobrien  $(INCDIR)/obstack.h subsegs.h struc-symbol.h
234089857Sobrienwrite.o: write.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h \
234189857Sobrien  output-file.h dwarf2dbg.h
234294536Sobriengasp.o: gasp.c $(INCDIR)/getopt.h $(INCDIR)/safe-ctype.h \
2343104834Sobrien  sb.h macro.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
234489857Sobrienitbl-ops.o: itbl-ops.c itbl-ops.h $(INCDIR)/symcat.h
234589857Sobriene-crisaout.o: $(srcdir)/config/e-crisaout.c $(INCDIR)/symcat.h \
234689857Sobrien  emul-target.h
234789857Sobriene-criself.o: $(srcdir)/config/e-criself.c $(INCDIR)/symcat.h \
234889857Sobrien  emul-target.h
234989857Sobriene-i386aout.o: $(srcdir)/config/e-i386aout.c $(INCDIR)/symcat.h \
235089857Sobrien  emul-target.h
235189857Sobriene-i386coff.o: $(srcdir)/config/e-i386coff.c $(INCDIR)/symcat.h \
235289857Sobrien  emul-target.h
235389857Sobriene-i386elf.o: $(srcdir)/config/e-i386elf.c $(INCDIR)/symcat.h \
235489857Sobrien  emul-target.h
235589857Sobriene-mipsecoff.o: $(srcdir)/config/e-mipsecoff.c $(INCDIR)/symcat.h \
235689857Sobrien  emul-target.h
235789857Sobriene-mipself.o: $(srcdir)/config/e-mipself.c $(INCDIR)/symcat.h \
235889857Sobrien  emul-target.h
235938889Sjdp$(OBJS): $(DEP_@target_cpu_type@_@obj_format@)
236060484Sobrien$(TARG_CPU_O): $(DEPTC_@target_cpu_type@_@obj_format@)
236160484Sobrien$(OBJ_FORMAT_O): $(DEPOBJ_@target_cpu_type@_@obj_format@)
236277298Sobrien#MKDEP    DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.
2363