Makefile.am revision 91041
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 \
4860484Sobrien	fr30 \
4938889Sjdp	h8300 \
5038889Sjdp	h8500 \
5138889Sjdp	hppa \
5277298Sobrien	ia64 \
5360484Sobrien	i370 \
5438889Sjdp	i386 \
5538889Sjdp	i860 \
5638889Sjdp	i960 \
5738889Sjdp	m32r \
5877298Sobrien	m68hc11 \
5938889Sjdp	m68k \
6038889Sjdp	m88k \
6160484Sobrien	mcore \
6238889Sjdp	mips \
6389857Sobrien	mmix \
6438889Sjdp	mn10200 \
6538889Sjdp	mn10300 \
6638889Sjdp	ns32k \
6789857Sobrien	openrisc \
6891041Sobrien	or32 \
6989857Sobrien	pdp11 \
7060484Sobrien	pj \
7138889Sjdp	ppc \
7289857Sobrien	s390 \
7338889Sjdp	sh \
7438889Sjdp	sparc \
7538889Sjdp	tahoe \
7638889Sjdp	tic30 \
7777298Sobrien	tic54x \
7860484Sobrien	tic80 \
7938889Sjdp	vax \
8038889Sjdp	w65 \
8138889Sjdp	v850 \
8291041Sobrien	sh64 \
8389857Sobrien	xstormy16 \
8438889Sjdp	z8k
8538889Sjdp
8638889Sjdp# Object format types.  This is only used for dependency information.
8778828Sobrien# We deliberately omit SOM, since it does not work as a cross assembler.
8838889Sjdp
8938889SjdpOBJ_FORMATS = \
9038889Sjdp	aout \
9138889Sjdp	bout \
9238889Sjdp	coff \
9338889Sjdp	ecoff \
9438889Sjdp	elf \
9538889Sjdp	evax \
9638889Sjdp	hp300 \
9738889Sjdp	ieee \
9838889Sjdp	vms
9938889Sjdp
10038889Sjdp# This is an sh case which sets valid according to whether the CPU
10138889Sjdp# type in the shell variable c and the OS type in the shell variable o
10238889Sjdp# are supported.  This helps cuts down on the amount of dependency
10338889Sjdp# information.
10438889Sjdp
10538889SjdpCPU_OBJ_VALID = \
10638889Sjdp	valid= ; \
10738889Sjdp	case $$o in \
10838889Sjdp	aout) \
10938889Sjdp	  case $$c in \
11089857Sobrien	  a29k | arm | cris | i386 | m68k | mips | ns32k | pdp11 | sparc | tahoe | tic30 | vax) \
11138889Sjdp	    valid=yes ;; \
11238889Sjdp	  esac ;; \
11338889Sjdp	bout) \
11438889Sjdp	  case $$c in \
11538889Sjdp	  i960) valid=yes ;; \
11638889Sjdp	  esac ;; \
11777298Sobrien	coff) valid=yes; \
11877298Sobrien	  case $$c in \
11989857Sobrien	  cris | i860 | mmix) \
12077298Sobrien	    valid= ;; \
12177298Sobrien	  esac ;; \
12238889Sjdp	ecoff) \
12338889Sjdp	  case $$c in \
12438889Sjdp	  mips | alpha) valid=yes ;; \
12538889Sjdp	  esac ;; \
12638889Sjdp	elf) valid=yes ;; \
12738889Sjdp	evax) \
12838889Sjdp	  case $$c in \
12938889Sjdp	  alpha) valid=yes ;; \
13038889Sjdp	  esac ;; \
13138889Sjdp	hp300) \
13238889Sjdp	  case $$c in \
13338889Sjdp	  m68k) valid=yes ;; \
13438889Sjdp	  esac ;; \
13538889Sjdp	vms) \
13638889Sjdp	  case $$c in \
13738889Sjdp	  vax) valid=yes ;; \
13838889Sjdp	  esac ;; \
13938889Sjdp	esac;
14038889Sjdp
14160484Sobrien# These are like CPU_TYPES and CPU_OBJ_VALID, for the obj=multi case.
14238889Sjdp
14377298SobrienMULTI_CPU_TYPES = i386 mips cris
14460484Sobrien
14560484SobrienMULTI_CPU_OBJ_VALID = \
14638889Sjdp	valid= ; \
14760484Sobrien	case $$o in \
14860484Sobrien	aout) \
14960484Sobrien	  case $$c in \
15077298Sobrien	  i386 | cris) valid=yes ;; \
15160484Sobrien	  esac ;; \
15277298Sobrien	coff) \
15377298Sobrien	  case $$c in \
15477298Sobrien	  i386 | mips) valid=yes ;; \
15577298Sobrien	  esac ;; \
15660484Sobrien	ecoff) \
15760484Sobrien	  case $$c in \
15860484Sobrien	  mips) valid=yes ;; \
15960484Sobrien	  esac ;; \
16060484Sobrien	elf) valid=yes ;; \
16138889Sjdp	esac;
16238889Sjdp
16338889Sjdp# Regular source files.
16438889Sjdp
16538889SjdpGAS_CFILES = \
16638889Sjdp	app.c \
16738889Sjdp	as.c \
16838889Sjdp	atof-generic.c \
16938889Sjdp	bignum-copy.c \
17038889Sjdp	cond.c \
17138889Sjdp	depend.c \
17260484Sobrien	dwarf2dbg.c \
17338889Sjdp	ecoff.c \
17438889Sjdp	ehopt.c \
17538889Sjdp	expr.c \
17638889Sjdp	flonum-copy.c \
17738889Sjdp	flonum-konst.c \
17838889Sjdp	flonum-mult.c \
17938889Sjdp	frags.c \
18038889Sjdp	hash.c \
18138889Sjdp	input-file.c \
18238889Sjdp	input-scrub.c \
18338889Sjdp	listing.c \
18438889Sjdp	literal.c \
18538889Sjdp	macro.c \
18638889Sjdp	messages.c \
18738889Sjdp	output-file.c \
18838889Sjdp	read.c \
18938889Sjdp	sb.c \
19038889Sjdp	stabs.c \
19138889Sjdp	subsegs.c \
19238889Sjdp	symbols.c \
19338889Sjdp	write.c
19438889Sjdp
19538889SjdpCFILES = $(GAS_CFILES) gasp.c itbl-ops.c
19638889Sjdp
19738889SjdpHFILES = \
19838889Sjdp	as.h \
19960484Sobrien	asintl.h \
20038889Sjdp	bignum.h \
20138889Sjdp	bit_fix.h \
20260484Sobrien	cgen.h \
20360484Sobrien	dwarf2dbg.h \
20438889Sjdp	ecoff.h \
20538889Sjdp	emul-target.h \
20638889Sjdp	emul.h \
20738889Sjdp	expr.h \
20838889Sjdp	flonum.h \
20938889Sjdp	frags.h \
21038889Sjdp	hash.h \
21138889Sjdp	input-file.h \
21238889Sjdp	itbl-ops.h \
21338889Sjdp	listing.h \
21438889Sjdp	macro.h \
21538889Sjdp	obj.h \
21638889Sjdp	output-file.h \
21738889Sjdp	read.h \
21838889Sjdp	sb.h \
21938889Sjdp	struc-symbol.h \
22038889Sjdp	subsegs.h \
22138889Sjdp	symbols.h \
22238889Sjdp	tc.h \
22338889Sjdp	write.h
22438889Sjdp
22538889Sjdp# CPU files in config.
22638889Sjdp
22738889SjdpTARGET_CPU_CFILES = \
22838889Sjdp	config/tc-a29k.c \
22938889Sjdp	config/tc-alpha.c \
23038889Sjdp	config/tc-arc.c \
23138889Sjdp	config/tc-arm.c \
23260484Sobrien	config/tc-avr.c \
23377298Sobrien	config/tc-cris.c \
23438889Sjdp	config/tc-d10v.c \
23560484Sobrien	config/tc-d30v.c \
23660484Sobrien	config/tc-fr30.c \
23738889Sjdp	config/tc-h8300.c \
23838889Sjdp	config/tc-h8500.c \
23938889Sjdp	config/tc-hppa.c \
24077298Sobrien	config/tc-ia64.c \
24160484Sobrien	config/tc-i370.c \
24238889Sjdp	config/tc-i386.c \
24338889Sjdp	config/tc-i860.c \
24438889Sjdp	config/tc-i960.c \
24538889Sjdp	config/tc-m32r.c \
24677298Sobrien	config/tc-m68hc11.c \
24738889Sjdp	config/tc-m68k.c \
24838889Sjdp	config/tc-m88k.c \
24960484Sobrien	config/tc-mcore.c \
25038889Sjdp	config/tc-mips.c \
25189857Sobrien	config/tc-mmix.c \
25238889Sjdp	config/tc-mn10200.c \
25338889Sjdp	config/tc-mn10300.c \
25438889Sjdp	config/tc-ns32k.c \
25589857Sobrien	config/tc-openrisc.c \
25691041Sobrien	config/tc-or32.c \
25789857Sobrien	config/tc-pdp11.c \
25860484Sobrien	config/tc-pj.c \
25938889Sjdp	config/tc-ppc.c \
26089857Sobrien	config/tc-s390.c \
26138889Sjdp	config/tc-sh.c \
26291041Sobrien	config/tc-sh64.c \
26338889Sjdp	config/tc-sparc.c \
26438889Sjdp	config/tc-tahoe.c \
26538889Sjdp	config/tc-tic30.c \
26677298Sobrien	config/tc-tic54x.c \
26760484Sobrien	config/tc-tic80.c \
26838889Sjdp	config/tc-vax.c \
26938889Sjdp	config/tc-w65.c \
27038889Sjdp	config/tc-v850.c \
27189857Sobrien	config/tc-xstormy16.c \
27238889Sjdp	config/tc-z8k.c
27338889Sjdp
27438889SjdpTARGET_CPU_HFILES = \
27538889Sjdp	config/tc-a29k.h \
27638889Sjdp	config/tc-alpha.h \
27738889Sjdp	config/tc-arc.h \
27838889Sjdp	config/tc-arm.h \
27960484Sobrien	config/tc-avr.h \
28077298Sobrien	config/tc-cris.h \
28138889Sjdp	config/tc-d10v.h \
28260484Sobrien	config/tc-d30v.h \
28360484Sobrien	config/tc-fr30.h \
28438889Sjdp	config/tc-h8300.h \
28538889Sjdp	config/tc-h8500.h \
28638889Sjdp	config/tc-hppa.h \
28777298Sobrien	config/tc-ia64.h \
28860484Sobrien	config/tc-i370.h \
28938889Sjdp	config/tc-i386.h \
29038889Sjdp	config/tc-i860.h \
29138889Sjdp	config/tc-i960.h \
29238889Sjdp	config/tc-m32r.h \
29377298Sobrien	config/tc-m68hc11.h \
29438889Sjdp	config/tc-m68k.h \
29538889Sjdp	config/tc-m88k.h \
29660484Sobrien	config/tc-mcore.h \
29738889Sjdp	config/tc-mips.h \
29889857Sobrien	config/tc-mmix.h \
29938889Sjdp	config/tc-mn10200.h \
30038889Sjdp	config/tc-mn10300.h \
30138889Sjdp	config/tc-ns32k.h \
30289857Sobrien	config/tc-openrisc.h \
30391041Sobrien	config/tc-or32.h \
30489857Sobrien	config/tc-pdp11.h \
30560484Sobrien	config/tc-pj.h \
30638889Sjdp	config/tc-ppc.h \
30789857Sobrien	config/tc-s390.h \
30838889Sjdp	config/tc-sh.h \
30991041Sobrien	config/tc-sh64.h \
31038889Sjdp	config/tc-sparc.h \
31138889Sjdp	config/tc-tahoe.h \
31238889Sjdp	config/tc-tic30.h \
31377298Sobrien	config/tc-tic54x.h \
31460484Sobrien	config/tc-tic80.h \
31538889Sjdp	config/tc-vax.h \
31638889Sjdp	config/tc-w65.h \
31738889Sjdp	config/tc-v850.h \
31889857Sobrien	config/tc-xstormy16.h \
31938889Sjdp	config/tc-z8k.h
32038889Sjdp
32138889Sjdp# OBJ files in config
32238889Sjdp
32338889SjdpOBJ_FORMAT_CFILES = \
32438889Sjdp	config/obj-aout.c \
32538889Sjdp	config/obj-bout.c \
32638889Sjdp	config/obj-coff.c \
32738889Sjdp	config/obj-ecoff.c \
32838889Sjdp	config/obj-elf.c \
32938889Sjdp	config/obj-evax.c \
33038889Sjdp	config/obj-hp300.c \
33138889Sjdp	config/obj-ieee.c \
33238889Sjdp	config/obj-som.c \
33338889Sjdp	config/obj-vms.c
33438889Sjdp
33538889SjdpOBJ_FORMAT_HFILES = \
33638889Sjdp	config/obj-aout.h \
33738889Sjdp	config/obj-bout.h \
33838889Sjdp	config/obj-coff.h \
33938889Sjdp	config/obj-ecoff.h \
34038889Sjdp	config/obj-elf.h \
34138889Sjdp	config/obj-evax.h \
34238889Sjdp	config/obj-hp300.h \
34338889Sjdp	config/obj-ieee.h \
34438889Sjdp	config/obj-som.h \
34538889Sjdp	config/obj-vms.h
34638889Sjdp
34738889Sjdp# Emulation header files in config
34838889Sjdp
34938889SjdpTARG_ENV_HFILES = \
35038889Sjdp	config/te-386bsd.h \
35138889Sjdp	config/te-aux.h \
35238889Sjdp	config/te-delta.h \
35338889Sjdp	config/te-delt88.h \
35438889Sjdp	config/te-dpx2.h \
35538889Sjdp	config/te-dynix.h \
35660484Sobrien	config/te-epoc-pe.h \
35738889Sjdp	config/te-generic.h \
35838889Sjdp	config/te-go32.h \
35938889Sjdp	config/te-hp300.h \
36038889Sjdp	config/te-hppa.h \
36178828Sobrien	config/te-hppa64.h \
36278828Sobrien	config/te-hppalinux64.h \
36338889Sjdp	config/te-i386aix.h \
36489857Sobrien	config/te-ia64aix.h \
36538889Sjdp	config/te-ic960.h \
36638889Sjdp	config/te-linux.h \
36738889Sjdp	config/te-lnews.h \
36838889Sjdp	config/te-lynx.h \
36938889Sjdp	config/te-mach.h \
37038889Sjdp	config/te-macos.h \
37138889Sjdp	config/te-nbsd.h \
37238889Sjdp	config/te-nbsd532.h \
37338889Sjdp	config/te-pc532mach.h \
37438889Sjdp	config/te-pe.h \
37538889Sjdp	config/te-ppcnw.h \
37638889Sjdp	config/te-psos.h \
37738889Sjdp	config/te-riscix.h \
37838889Sjdp	config/te-sparcaout.h \
37938889Sjdp	config/te-sun3.h \
38038889Sjdp	config/te-svr4.h \
38178828Sobrien	config/te-sysv32.h \
38278828Sobrien	config/te-tmips.h
38338889Sjdp
38438889Sjdp# Multi files in config
38538889Sjdp
38638889SjdpMULTI_CFILES = \
38777298Sobrien	config/e-crisaout.c \
38877298Sobrien	config/e-criself.c \
38960484Sobrien	config/e-i386aout.c \
39038889Sjdp	config/e-i386coff.c \
39138889Sjdp	config/e-i386elf.c \
39238889Sjdp	config/e-mipsecoff.c \
39338889Sjdp	config/e-mipself.c
39438889Sjdp
39538889SjdpCONFIG_OBJS = \
39638889Sjdp	$(TARG_CPU_O) \
39738889Sjdp	$(OBJ_FORMAT_O) \
39838889Sjdp	$(ATOF_TARG_O) \
39938889Sjdp	$(extra_objects)
40038889Sjdp
40138889SjdpGENERIC_OBJS = \
40238889Sjdp	app.o \
40338889Sjdp	as.o \
40438889Sjdp	atof-generic.o \
40538889Sjdp	bignum-copy.o \
40638889Sjdp	cond.o \
40738889Sjdp	depend.o \
40860484Sobrien	dwarf2dbg.o \
40938889Sjdp	ehopt.o \
41038889Sjdp	expr.o \
41138889Sjdp	flonum-konst.o \
41238889Sjdp	flonum-copy.o \
41338889Sjdp	flonum-mult.o \
41438889Sjdp	frags.o \
41538889Sjdp	hash.o \
41638889Sjdp	input-file.o \
41738889Sjdp	input-scrub.o \
41838889Sjdp	literal.o \
41938889Sjdp	messages.o \
42038889Sjdp	output-file.o \
42138889Sjdp	read.o \
42238889Sjdp	subsegs.o \
42338889Sjdp	symbols.o \
42438889Sjdp	write.o \
42538889Sjdp	listing.o \
42638889Sjdp	ecoff.o \
42738889Sjdp	stabs.o \
42838889Sjdp	sb.o \
42938889Sjdp	macro.o
43038889Sjdp
43138889SjdpOBJS = $(CONFIG_OBJS) $(GENERIC_OBJS)
43238889Sjdp
43360484SobrienPOTFILES = $(MULTI_CFILES) $(TARGET_ENV_HFILES) $(OBJ_FORMAT_HFILES) \
43460484Sobrien	$(OBJ_FORMAT_CFILES) $(TARGET_CPU_HFILES) $(TARGET_CPU_CFILES) \
43560484Sobrien	$(HFILES) $(CFILES) $(GAS_CFILES)
43660484Sobrienpo/POTFILES.in: @MAINT@ Makefile
43760484Sobrien	for file in $(POTFILES); do echo $$file; done | sort > tmp \
43860484Sobrien	  && mv tmp $(srcdir)/po/POTFILES.in
43960484Sobrien
44038889Sjdpnoinst_PROGRAMS = as-new gasp-new
44160484Sobriennoinst_SCRIPTS = $(GDBINIT)
44260484SobrienEXTRA_SCRIPTS = .gdbinit
44338889Sjdp
44438889Sjdp$(srcdir)/make-gas.com: stamp-mk.com
44538889Sjdpstamp-mk.com: vmsconf.sh Makefile
44638889Sjdp	sh $(srcdir)/vmsconf.sh $(GENERIC_OBJS) > new-make.com
44738889Sjdp	$(SHELL) $(srcdir)/../move-if-change new-make.com $(srcdir)/make-gas.com
44838889Sjdp	touch stamp-mk.com
44938889Sjdp
45089857SobrienEXTRA_DIST = make-gas.com m68k-parse.c itbl-parse.c itbl-parse.h itbl-lex.c
45189857Sobriendiststuff: $(EXTRA_DIST) info
45238889Sjdp
45360484SobrienDISTCLEANFILES = targ-cpu.h obj-format.h targ-env.h itbl-cpu.h cgen-desc.h
45438889Sjdp
45538889Sjdp# Now figure out from those variables how to compile and link.
45638889Sjdp
45738889SjdpBASEDIR = $(srcdir)/..
45838889SjdpBFDDIR = $(BASEDIR)/bfd
45938889SjdpINCDIR = $(BASEDIR)/include
46038889Sjdp
46138889Sjdp# This is the variable actually used when we compile.
46238889Sjdp# Specify the directories to be searched for header files.
46338889Sjdp# Both . and srcdir are used, in that order,
46438889Sjdp# so that tm.h and config.h will be found in the compilation
46538889Sjdp# subdirectory rather than in the source directory.
46660484SobrienINCLUDES = -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\""
46738889Sjdp
46838889Sjdp# This should be parallel to INCLUDES, but should replace $(srcdir)
46938889Sjdp# with $${srcdir}, and should work in a subdirectory.  This is used
47038889Sjdp# when building dependencies, because the dependency building is done
47138889Sjdp# in a subdirectory.
47260484SobrienDEP_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\""
47338889Sjdp
47489857SobrienDEP_FLAGS = -DBFD_ASSEMBLER -DOBJ_MAYBE_ELF \
47589857Sobrien	-I. -I.. -I$${srcdir} -I../../bfd $(DEP_INCLUDES)
47689857Sobrien
47738889Sjdp# How to link with both our special library facilities
47838889Sjdp# and the system's installed libraries.
47938889Sjdp
48038889SjdpGASLIBS = @OPCODES_LIB@ @BFDLIB@ ../libiberty/libiberty.a
48138889Sjdp
48238889Sjdp# Files to be copied away after each stage in building.
48338889SjdpSTAGESTUFF = *.o $(noinst_PROGRAMS)
48438889Sjdp
48538889Sjdp$(OBJS): @ALL_OBJ_DEPS@
48638889Sjdp
48738889Sjdpas_new_SOURCES = $(GAS_CFILES)
48838889Sjdpas_new_LDADD = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
48977298Sobrien	$(extra_objects) $(GASLIBS) $(INTLLIBS) $(LIBM)
49038889Sjdpas_new_DEPENDENCIES = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
49160484Sobrien	$(extra_objects) $(GASLIBS) $(INTLDEPS)
49238889Sjdp
49338889Sjdp# Stuff that every object file depends upon.  If anything is removed
49438889Sjdp# from this list, remove it from dep-in.sed as well.
49577298Sobrien$(OBJS): $(INCDIR)/bin-bugs.h $(INCDIR)/libiberty.h $(INCDIR)/progress.h \
49677298Sobrien	$(OBJ_FORMAT_H) $(TARG_CPU_H) $(TARG_ENV_H) \
49777298Sobrien	as.h asintl.h bignum.h bit_fix.h config.h emul.h expr.h flonum.h \
49877298Sobrien	frags.h hash.h listing.h obj.h read.h symbols.h tc.h write.h
49938889Sjdp
50038889Sjdpgasp_new_SOURCES = gasp.c macro.c sb.c hash.c
50160484Sobriengasp_new_LDADD = ../libiberty/libiberty.a $(INTLLIBS)
50260484Sobriengasp_new_DEPENDENCIES = ../libiberty/libiberty.a $(INTLDEPS)
50338889Sjdp
50438889SjdpEXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
50538889Sjdp          echo $${rootme}/../expect/expect ; \
50638889Sjdp          else echo expect ; fi`
50738889Sjdp
50838889SjdpRUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
50938889Sjdp		echo $${srcdir}/../dejagnu/runtest ; else echo runtest; \
51038889Sjdp	   fi`
51138889SjdpRUNTESTFLAGS=
51238889Sjdp
51338889Sjdpcheck-DEJAGNU: site.exp
51438889Sjdp	if [ -d testsuite ]; then \
51538889Sjdp	  true; \
51638889Sjdp	else \
51738889Sjdp	  mkdir testsuite; \
51838889Sjdp	fi
51938889Sjdp	rm -f testsuite/site.exp
52038889Sjdp	cp site.exp testsuite/site.exp
52138889Sjdp	rootme=`pwd`; export rootme; \
52238889Sjdp	srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
52338889Sjdp	EXPECT=${EXPECT} ; export EXPECT ; \
52438889Sjdp	if [ -f $(top_builddir)/../expect/expect ]; then \
52538889Sjdp	  TCL_LIBRARY=`cd $(top_srcdir)/../tcl/library && pwd`; \
52638889Sjdp	  export TCL_LIBRARY; \
52738889Sjdp	fi; \
52838889Sjdp	runtest=$(RUNTEST); \
52938889Sjdp	cd testsuite; \
53038889Sjdp	if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
53138889Sjdp	  $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
53238889Sjdp		$(RUNTESTFLAGS); \
53338889Sjdp	else echo "WARNING: could not find \`runtest'" 1>&2; :;\
53438889Sjdp	fi
53538889Sjdp
53638889Sjdp# The implicit .c.o rule doesn't work for these, perhaps because of
53738889Sjdp# the variables, or perhaps because the sources are not on vpath.
53877298Sobrien$(TARG_CPU_O): $(TARG_CPU_C)
53938889Sjdp	$(COMPILE) -c $(TARG_CPU_C)
54038889Sjdp$(ATOF_TARG_O): $(ATOF_TARG_C)
54138889Sjdp	$(COMPILE) -c $(ATOF_TARG_C)
54238889Sjdp
54338889Sjdp# ecoff.c only has full dependencies when ECOFF_DEBUGGING is defined,
54438889Sjdp# so the automatic dependency stuff doesn't work.
54538889Sjdpecoff.o : ecoff.c ecoff.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
54638889Sjdp	$(INCDIR)/coff/ecoff.h $(INCDIR)/coff/symconst.h \
54738889Sjdp	$(INCDIR)/aout/stab_gnu.h
54838889Sjdp
54938889Sjdp# We need all these explicit rules for the multi stuff.  Because of
55038889Sjdp# these rules, we don't need one for OBJ_FORMAT_O.
55138889Sjdp
55238889Sjdpobj-aout.o : $(srcdir)/config/obj-aout.c
55338889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-aout.c
55438889Sjdpobj-bout.o : $(srcdir)/config/obj-bout.c
55538889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-bout.c
55638889Sjdpobj-coff.o: $(srcdir)/config/obj-coff.c
55738889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-coff.c
55838889Sjdpobj-ecoff.o : $(srcdir)/config/obj-ecoff.c
55938889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-ecoff.c
56038889Sjdpobj-elf.o : $(srcdir)/config/obj-elf.c
56138889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-elf.c
56238889Sjdpobj-evax.o : $(srcdir)/config/obj-evax.c
56338889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-evax.c
56438889Sjdpobj-hp300.o : $(srcdir)/config/obj-hp300.c
56538889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-hp300.c
56638889Sjdpobj-ieee.o : $(srcdir)/config/obj-ieee.c
56738889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-ieee.c
56838889Sjdpobj-multi.o : $(srcdir)/config/obj-multi.c
56938889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-multi.c
57038889Sjdpobj-som.o : $(srcdir)/config/obj-som.c
57138889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-som.c
57238889Sjdpobj-vms.o : $(srcdir)/config/obj-vms.c
57338889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-vms.c
57438889Sjdp
57538889Sjdpe-mipself.o : $(srcdir)/config/e-mipself.c
57638889Sjdp	$(COMPILE) -c $(srcdir)/config/e-mipself.c
57738889Sjdpe-mipsecoff.o : $(srcdir)/config/e-mipsecoff.c
57838889Sjdp	$(COMPILE) -c $(srcdir)/config/e-mipsecoff.c
57960484Sobriene-i386aout.o: $(srcdir)/config/e-i386aout.c
58060484Sobrien	$(COMPILE) -c $(srcdir)/config/e-i386aout.c
58138889Sjdpe-i386coff.o: $(srcdir)/config/e-i386coff.c
58238889Sjdp	$(COMPILE) -c $(srcdir)/config/e-i386coff.c
58338889Sjdpe-i386elf.o: $(srcdir)/config/e-i386elf.c
58438889Sjdp	$(COMPILE) -c $(srcdir)/config/e-i386elf.c
58577298Sobriene-crisaout.o: $(srcdir)/config/e-crisaout.c
58677298Sobrien	$(COMPILE) -c $(srcdir)/config/e-crisaout.c
58777298Sobriene-criself.o: $(srcdir)/config/e-criself.c
58877298Sobrien	$(COMPILE) -c $(srcdir)/config/e-criself.c
58938889Sjdp
59038889Sjdp# The m68k operand parser.
59138889Sjdp
59238889SjdpEXTRA_as_new_SOURCES = config/m68k-parse.y
59338889Sjdp
59460484Sobrien# If m68k-parse.y is in a different directory, then ylwrap will use an
59560484Sobrien# absolute path when it invokes yacc, which will cause yacc to put the
59660484Sobrien# absolute path into the generated file.  That's a pain when it comes
59760484Sobrien# to generating snapshots, because it introduces spurious diffs.
59860484Sobrien# Since when we make the snapshots $(srcdir) = ".", we check for that
59960484Sobrien# case and handle it differently.  This means that anybody who
60060484Sobrien# configures with $(srcdir) = "." will have to set their path in the
60160484Sobrien# debugger if they want to debug m68k-parse.y.  This is bad, but on
60260484Sobrien# the other hand it's good that people who use the prebuilt
60360484Sobrien# m68k-parse.c don't get a spurious absolute path.
60438889Sjdpm68k-parse.c: $(srcdir)/config/m68k-parse.y
60560484Sobrien	f=$(srcdir)/config/m68k-parse.y; \
60660484Sobrien	if [ $$f = "./config/m68k-parse.y" ]; then \
60760484Sobrien	  ln -s config/m68k-parse.y . > /dev/null 2>/dev/null || \
60860484Sobrien	   ln config/m68k-parse.y . > /dev/null 2>/dev/null || \
60960484Sobrien	   cp config/m68k-parse.y . >/dev/null 2>/dev/null; \
61060484Sobrien	  f=m68k-parse.y; \
61160484Sobrien	else true; fi; \
61260484Sobrien	$(SHELL) $(YLWRAP) "$(YACC)" $$f y.tab.c m68k-parse.c --; \
61360484Sobrien	if [ $$f = "m68k-parse.y" ]; then \
61460484Sobrien	  rm -f m68k-parse.y; \
61560484Sobrien	else true; fi
61638889Sjdpm68k-parse.o: m68k-parse.c $(srcdir)/config/m68k-parse.h
61738889Sjdp
61838889Sjdp# Don't let the .y.h rule clobber m68k-parse.h.
61938889Sjdpm68k-parse.h: ; @true
62038889Sjdp$(srcdir)/config/m68k-parse.h: ; @true
62138889Sjdp
62238889Sjdp# The instruction table specification lexical analyzer and parser.
62338889Sjdp
62438889Sjdpitbl-lex.c: $(srcdir)/itbl-lex.l
62538889Sjdpitbl-lex.o: itbl-lex.c itbl-parse.h
62638889Sjdp
62738889Sjdpitbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h
62838889Sjdp
62938889Sjdpitbl-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
63038889Sjdp
63138889Sjdpitbl-parse.c itbl-parse.h: $(srcdir)/itbl-parse.y
63238889Sjdp	$(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/itbl-parse.y y.tab.c itbl-parse.c y.tab.h itbl-parse.h -- -d
63338889Sjdp
63438889Sjdp# stand-alone itbl assembler & disassembler
63538889Sjdp
63638889SjdpEXTRA_PROGRAMS = itbl-test
63738889Sjdpitbl_test_SOURCES = itbl-parse.y itbl-lex.l
63860484Sobrienitbl_test_LDADD = itbl-tops.o itbl-test.o $(GASLIBS) @LEXLIB@
63938889Sjdp
64060484Sobrienitbl-tops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
64160484Sobrien	$(COMPILE) -o itbl-tops.o -DSTAND_ALONE -c $(srcdir)/itbl-ops.c
64238889Sjdp
64338889Sjdpitbl-test.o: $(srcdir)/testsuite/gas/all/itbl-test.c $(srcdir)/itbl-ops.h
64438889Sjdp	$(COMPILE) -c -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c
64538889Sjdp
64638889Sjdp# CGEN interface.
64738889Sjdp
64860484SobrienCGEN_CPU_PREFIX = @cgen_cpu_prefix@
64960484Sobrien
65060484Sobriencgen.o: cgen.c cgen.h cgen-desc.h subsegs.h \
65138889Sjdp	$(INCDIR)/obstack.h $(INCDIR)/opcode/cgen.h \
65260484Sobrien	$(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-desc.h \
65360484Sobrien	$(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-opc.h
65438889Sjdp
65538889Sjdp# Remake the info files.
65638889Sjdp
65738889SjdpMOSTLYCLEANFILES = $(STAGESTUFF) core stamp-mk.com \
65838889Sjdp	testsuite/*.o testsuite/*.out testsuite/gas.log testsuite/gas.sum \
65938889Sjdp	testsuite/site.exp site.bak site.exp stage stage1 stage2
66038889Sjdp
66177298SobrienCLEANFILES = dep.sed DEPTC DEPTCA DEPOBJ DEPOBJA DEP2 DEP2A DEP1 DEPA DEP DEPDIR
66238889Sjdp
66338889Sjdp.PHONY: install-exec-local install-data-local
66460484Sobrien.PHONY: install-exec-bindir install-exec-tooldir
66538889Sjdp
66660484Sobrieninstall-exec-local: install-exec-bindir @install_tooldir@
66760484Sobrien
66860484Sobrieninstall-exec-bindir: $(noinst_PROGRAMS)
66960484Sobrien	$(mkinstalldirs) $(bindir)
67038889Sjdp	@list='$(noinst_PROGRAMS)'; for p in $$list; do \
67138889Sjdp	  if test -f $$p; then \
67260484Sobrien	    echo " $(LIBTOOL)  --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
67360484Sobrien	    $(LIBTOOL)  --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
67438889Sjdp	  else :; fi; \
67538889Sjdp	done
67660484Sobrien
67760484Sobrieninstall-exec-tooldir: install-exec-bindir $(noinst_PROGRAMS)
67860484Sobrien	$(mkinstalldirs) $(tooldir)/bin
67938889Sjdp	n=`echo as | sed '$(transform)'`; \
68038889Sjdp	if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/as$(EXEEXT)" ]; then \
68160484Sobrien	  rm -f $(tooldir)/bin/as$(EXEEXT); \
68238889Sjdp	  ln $(bindir)/$$n$(EXEEXT) $(tooldir)/bin/as$(EXEEXT) >/dev/null 2>/dev/null \
68338889Sjdp	    || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) as-new$(EXEEXT) $(tooldir)/bin/as$(EXEEXT); \
68460484Sobrien	else \
68560484Sobrien	  true ; \
68638889Sjdp	fi
68738889Sjdp
68838889Sjdp# These exist for maintenance purposes.
68938889Sjdp
69038889Sjdp.PHONY: bootstrap bootstrap2 bootstrap3 stage1 stage2 stage3 comparison
69138889Sjdp
69238889Sjdpbootstrap: as-new
69338889Sjdp	$(MAKE) stage1
69438889Sjdp	rm -f stage && ln -s stage1 stage
69538889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
69638889Sjdp	$(MAKE) stage2
69738889Sjdp	rm -f stage && ln -s stage2 stage
69838889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
69938889Sjdp	$(MAKE) comparison against=stage2
70038889Sjdp
70138889Sjdpbootstrap2:
70238889Sjdp	rm -f stage && ln -s stage1 stage
70338889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
70438889Sjdp	$(MAKE) stage2
70538889Sjdp	rm -f stage && ln -s stage2 stage
70638889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
70738889Sjdp	$(MAKE) comparison against=stage2
70838889Sjdp
70938889Sjdpbootstrap3:
71038889Sjdp	rm -f stage && ln -s stage2 stage
71138889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
71238889Sjdp	$(MAKE) comparison against=stage2
71338889Sjdp
71438889Sjdp# Copy the object files from a particular stage into a subdirectory.
71538889Sjdpstage1:
71638889Sjdp	-mkdir stage1
71738889Sjdp	-mv $(STAGESTUFF) stage1
71838889Sjdp	if [ -f stage1/as-new$(EXEEXT) -a ! -f stage1/as$(EXEEXT) ] ; then (cd stage1 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
71938889Sjdp
72038889Sjdpstage2:
72138889Sjdp	-mkdir stage2
72238889Sjdp	-mv $(STAGESTUFF) stage2
72338889Sjdp	if [ -f stage2/as-new$(EXEEXT) -a ! -f stage2/as$(EXEEXT) ] ; then (cd stage2 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
72438889Sjdp
72538889Sjdpstage3:
72638889Sjdp	-mkdir stage3
72738889Sjdp	-mv $(STAGESTUFF) stage3
72838889Sjdp	if [ -f stage3/as-new$(EXEEXT) -a ! -f stage3/as$(EXEEXT) ] ; then (cd stage3 ; ln -s as-new as$(EXEEXT)) ; fi
72938889Sjdp
73038889Sjdpagainst=stage2
73138889Sjdp
73238889Sjdp# This rule is derived from corresponding code in the Makefile.in for gcc.
73338889Sjdp# The "tail +16c" is to bypass headers which may include timestamps or
73438889Sjdp# temporary assembly file names.
73538889Sjdpcomparison:
73638889Sjdp	x=0 ; \
73738889Sjdp	for file in *.o ; do \
73838889Sjdp	  tail +16c ./$$file > tmp-foo1; \
73938889Sjdp	  if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \
74038889Sjdp	    if cmp tmp-foo1 tmp-foo2 ; then \
74138889Sjdp	      true ; \
74238889Sjdp	    else \
74338889Sjdp	      echo $$file differs ; \
74438889Sjdp	      x=1 ; \
74538889Sjdp	    fi ; \
74638889Sjdp	  else true; fi ; \
74738889Sjdp	done ; \
74838889Sjdp	exit $$x
74938889Sjdp	-rm -f tmp-foo*
75038889Sjdp
75138889Sjdp.PHONY: de-stage1 de-stage2 de-stage3
75238889Sjdp
75338889Sjdpde-stage1:
75438889Sjdp	- (cd stage1 ; rm -f as$(EXEEXT) ; mv -f * ..)
75538889Sjdp	- rmdir stage1
75638889Sjdp
75738889Sjdpde-stage2:
75838889Sjdp	- (cd stage2 ; rm -f as$(EXEEXT) ; mv -f * ..)
75938889Sjdp	- rmdir stage2
76038889Sjdp
76138889Sjdpde-stage3:
76238889Sjdp	- (cd stage3 ; rm -f as$(EXEEXT) ; mv -f * ..)
76338889Sjdp	- rmdir stage3
76438889Sjdp
76538889SjdpDEP_FILE_DEPS =  $(CFILES) $(HFILES) $(TARGET_CPU_CFILES) \
76638889Sjdp	$(TARGET_CPU_HFILES) $(OBJ_FORMAT_CFILES) $(OBJ_FORMAT_HFILES)
76738889Sjdp
76889857SobrienMakefile: $(BFDDIR)/configure.in
76989857Sobrien
77077298Sobrien# Automatic dependency computation.  This is a real pain, because the
77177298Sobrien# dependencies change based on target_cpu_type and obj_format.
77277298Sobrien# Just to make things even more complicated, automake separates the
77377298Sobrien# dependency variable assignments from the dependency rules, and tacks
77477298Sobrien# on a .NOEXPORT at the end of Makefile.in.
77577298Sobrien
77660484SobrienDEP: dep.sed $(DEP_FILE_DEPS) DEPTC DEPOBJ DEP2
77777298Sobrien	rm -f DEP1 # delete because we use $? in DEP1 rule
77838889Sjdp	srcdir=`cd $(srcdir); pwd`; \
77960484Sobrien	$(MAKE) MKDEP="$(MKDEP)" srcdir="$${srcdir}" VPATH="$${srcdir}" DEP1
78060484Sobrien	rm -rf DEPDIR
78177298Sobrien	echo 'AMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.' > DEPA
78260484Sobrien	sed -f dep.sed < DEPTC >> DEPA
78360484Sobrien	sed -f dep.sed < DEPOBJ >> DEPA
78460484Sobrien	sed -f dep.sed < DEP2 >> DEPA
78577298Sobrien	echo 'BMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.' >> DEPA
78677298Sobrien	echo '#MKDEP    DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.' >> DEPA
78777298Sobrien	sed -f dep.sed < DEP1 >> DEPA
78860484Sobrien	echo '$$(OBJS): $$(DEP_@target''_cpu_type@_@obj''_format@)' >> DEPA
78960484Sobrien	echo '$$(TARG_CPU_O): $$(DEPTC_@target''_cpu_type@_@obj''_format@)' >> DEPA
79060484Sobrien	echo '$$(OBJ_FORMAT_O): $$(DEPOBJ_@target''_cpu_type@_@obj''_format@)' >> DEPA
79177298Sobrien	echo '#MKDEP    DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.' >> DEPA
79277298Sobrien	if grep ' /' DEPA > /dev/null 2> /dev/null; then \
79377298Sobrien	  echo 'make DEP failed!'; exit 1; \
79477298Sobrien	else \
79577298Sobrien	  mv -f DEPA $@; \
79677298Sobrien	fi
79738889Sjdp
79860484SobrienDEP1: $(CFILES) $(MULTI_CFILES)
79960484Sobrien	if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
80038889Sjdp	srcdir=`cd $(srcdir); pwd`; \
80160484Sobrien	cd DEPDIR; \
80238889Sjdp	echo '' > targ-cpu.h; \
80338889Sjdp	echo '' > obj-format.h; \
80438889Sjdp	echo '' > targ-env.h; \
80538889Sjdp	echo '' > itbl-cpu.h; \
80660484Sobrien	echo '' > itbl-parse.h; \
80789857Sobrien	$(MKDEP) $(DEP_FLAGS) $? > DEP
80860484Sobrien	mv -f DEPDIR/DEP $@
80938889Sjdp
81038889Sjdp# Work out the special dependencies for the tc-*.c files.
81160484SobrienDEPTC: $(TARGET_CPU_CFILES)
81260484Sobrien	rm -f DEPTCA
81360484Sobrien	if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
81438889Sjdp	srcdir=`cd $(srcdir); pwd`; \
81560484Sobrien	cd DEPDIR; \
81638889Sjdp	for c in $(CPU_TYPES); do \
81738889Sjdp	  for o in $(OBJ_FORMATS); do \
81838889Sjdp	    $(CPU_OBJ_VALID) \
81938889Sjdp	    if [ x$${valid} = xyes ]; then \
82038889Sjdp	      echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
82138889Sjdp	      echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \
82238889Sjdp	      echo '#include "te-generic.h"' > targ-env.h; \
82338889Sjdp	      echo '' > itbl-cpu.h; \
82460484Sobrien	      echo '' > itbl-parse.h; \
82560484Sobrien	      echo '#include "opcodes/'"$${c}"'-desc.h"' > cgen-desc.h; \
82638889Sjdp	      rm -f dummy.c; \
82738889Sjdp	      cp $${srcdir}/config/tc-$${c}.c dummy.c; \
82889857Sobrien	      $(MKDEP) $(DEP_FLAGS) dummy.c | \
82960484Sobrien	        sed -e "s/dummy.o: dummy.c/DEPTC_$${c}_$${o} =/" >> ../DEPTCA; \
83038889Sjdp	      rm -f dummy.c; \
83138889Sjdp	    else true; fi; \
83238889Sjdp	  done; \
83338889Sjdp	done
83460484Sobrien	echo 'DEPTC_hppa_som = $$(srcdir)/config/tc-hppa.h subsegs.h \' >> DEPTCA
83560484Sobrien	echo '  $$(INCDIR)/obstack.h $$(BFDDIR)/libhppa.h \' >> DEPTCA
83660484Sobrien	echo '  $$(INCDIR)/opcode/hppa.h $$(BFDDIR)/som.h' >> DEPTCA
83760484Sobrien	for c in $(MULTI_CPU_TYPES); do \
83877298Sobrien	  echo "DEPTC_$${c}"'_multi = \' >> DEPTCA; \
83960484Sobrien	  for o in $(OBJ_FORMATS); do \
84060484Sobrien	    $(MULTI_CPU_OBJ_VALID) \
84138889Sjdp	    if [ x$${valid} = xyes ]; then \
84260484Sobrien	      echo '$$(DEPTC_'"$${c}_$${o}"') \' >> DEPTCA; \
84338889Sjdp	    else true; fi; \
84460484Sobrien	  done; \
84560484Sobrien	  echo '' >> DEPTCA; \
84638889Sjdp	done
84760484Sobrien	mv -f DEPTCA DEPTC
84838889Sjdp
84938889Sjdp# Work out the special dependencies for the obj-*.c files.
85060484SobrienDEPOBJ: $(OBJ_FORMAT_CFILES)
85160484Sobrien	rm -f DEPOBJA
85260484Sobrien	if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
85338889Sjdp	srcdir=`cd $(srcdir); pwd`; \
85460484Sobrien	cd DEPDIR; \
85538889Sjdp	for c in $(CPU_TYPES); do \
85638889Sjdp	  for o in $(OBJ_FORMATS); do \
85738889Sjdp	    $(CPU_OBJ_VALID) \
85838889Sjdp	    if [ x$${valid} = xyes ]; then \
85938889Sjdp	      echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
86038889Sjdp	      echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \
86138889Sjdp	      echo '#include "te-generic.h"' > targ-env.h; \
86238889Sjdp	      echo '' > itbl-cpu.h; \
86360484Sobrien	      echo '' > itbl-parse.h; \
86438889Sjdp	      rm -f dummy.c; \
86538889Sjdp	      cp $${srcdir}/config/obj-$${o}.c dummy.c; \
86689857Sobrien	      $(MKDEP) $(DEP_FLAGS) dummy.c | \
86760484Sobrien	        sed -e "s/dummy.o: dummy.c/DEPOBJ_$${c}_$${o} =/" >> ../DEPOBJA; \
86838889Sjdp	      rm -f dummy.c; \
86938889Sjdp	    else true; fi; \
87038889Sjdp	  done; \
87138889Sjdp	done
87260484Sobrien	echo 'DEPOBJ_hppa_som = $$(srcdir)/config/obj-som.h subsegs.h \' >> DEPOBJA
87360484Sobrien	echo '  $$(INCDIR)/obstack.h $$(BFDDIR)/libhppa.h \' >> DEPOBJA
87460484Sobrien	echo '  $$(BFDDIR)/som.h  $$(INCDIR)/aout/stab_gnu.h \' >> DEPOBJA
87560484Sobrien	echo '  $$(INCDIR)/aout/stab.def' >> DEPOBJA
87660484Sobrien	for c in $(MULTI_CPU_TYPES); do \
87777298Sobrien	  echo "DEPOBJ_$${c}"'_multi = \' >> DEPOBJA; \
87860484Sobrien	  for o in $(OBJ_FORMATS); do \
87960484Sobrien	    $(MULTI_CPU_OBJ_VALID) \
88038889Sjdp	    if [ x$${valid} = xyes ]; then \
88160484Sobrien	      echo '$$(DEPOBJ_'"$${c}_$${o}"') \' >> DEPOBJA; \
88238889Sjdp	    else true; fi; \
88360484Sobrien	  done; \
88460484Sobrien	  echo '' >> DEPOBJA; \
88538889Sjdp	done
88660484Sobrien	mv -f DEPOBJA DEPOBJ
88738889Sjdp
88838889Sjdp# Work out the dependencies for each CPU/OBJ combination.
88938889Sjdp# Note that SOM is a special case, because it only works native.
89060484SobrienDEP2: $(TARGET_CPU_HFILES) $(OBJ_FORMAT_HFILES)
89177298Sobrien	rm -f DEP2A
89260484Sobrien	if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
89338889Sjdp	srcdir=`cd $(srcdir); pwd`; \
89460484Sobrien	cd DEPDIR; \
89538889Sjdp	for c in $(CPU_TYPES); do \
89638889Sjdp	  for o in $(OBJ_FORMATS); do \
89738889Sjdp	    $(CPU_OBJ_VALID) \
89838889Sjdp	    if [ x$${valid} = xyes ]; then \
89938889Sjdp	      echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
90038889Sjdp	      echo '#include "obj-'"$${o}"'.h"' > dummy.c; \
90189857Sobrien	      $(MKDEP) $(DEP_FLAGS) dummy.c | \
90277298Sobrien	        sed -e "s/dummy.o: dummy.c/DEP_$${c}_$${o} =/" >> ../DEP2A; \
90338889Sjdp	    else true; fi; \
90438889Sjdp	  done; \
90538889Sjdp	done
90677298Sobrien	echo 'DEP_hppa_som = $$(BFDDIR)/som.h' >> DEP2A
90760484Sobrien	for c in $(MULTI_CPU_TYPES); do \
90877298Sobrien	  echo "DEP_$${c}"'_multi = \' >> DEP2A; \
90960484Sobrien	  for o in $(OBJ_FORMATS); do \
91060484Sobrien	    $(MULTI_CPU_OBJ_VALID) \
91138889Sjdp	    if [ x$${valid} = xyes ]; then \
91277298Sobrien	      echo '$$(DEP_'"$${c}_$${o}"') \' >> DEP2A; \
91338889Sjdp	    else true; fi; \
91460484Sobrien	  done; \
91577298Sobrien	  echo '' >> DEP2A; \
91638889Sjdp	done
91777298Sobrien	mv -f DEP2A DEP2
91838889Sjdp
91938889Sjdpdep.sed: dep-in.sed config.status
92038889Sjdp	srcdir=`cd $(srcdir); pwd`; \
92138889Sjdp	sed <$(srcdir)/dep-in.sed >dep.sed \
92238889Sjdp		-e "s!@INCDIR@!$${srcdir}/../include!" \
92338889Sjdp		-e "s!@BFDDIR@!$${srcdir}/../bfd!" \
92438889Sjdp		-e "s!@SRCDIR@!$${srcdir}!"
92538889Sjdp
92660484Sobriendep: DEP
92777298Sobrien	sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
92877298Sobrien	  < Makefile > tmp-Makefile
92960484Sobrien	cat DEP >> tmp-Makefile
93038889Sjdp	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
93138889Sjdp
93260484Sobriendep-in: DEP
93377298Sobrien	sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
93477298Sobrien	  < $(srcdir)/Makefile.in > tmp-Makefile.in
93560484Sobrien	cat DEP >> tmp-Makefile.in
93638889Sjdp	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
93738889Sjdp
93860484Sobriendep-am: DEP
93977298Sobrien	sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
94077298Sobrien	  < $(srcdir)/Makefile.am > tmp-Makefile.am
94160484Sobrien	cat DEP >> tmp-Makefile.am
94238889Sjdp	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
94338889Sjdp
94477298Sobrien# HEED THE MKDEP WARNINGS.
94577298Sobrien# ANYTHING CHANGED OR ADDED BETWEEN THE WARNING LINES MAY GO AWAY.
94638889Sjdp.PHONY: dep dep-in dep-am
94738889Sjdp
94877298SobrienAMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.
94989857SobrienDEPTC_a29k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
95089857Sobrien  $(srcdir)/config/tc-a29k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
95189857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/a29k.h
95289857SobrienDEPTC_a29k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
95389857Sobrien  $(srcdir)/config/tc-a29k.h $(INCDIR)/coff/internal.h \
95489857Sobrien  $(INCDIR)/coff/a29k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
95589857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/a29k.h
95689857SobrienDEPTC_a29k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
95789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
95889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h \
95989857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/a29k.h
96089857SobrienDEPTC_alpha_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
96189857Sobrien  $(srcdir)/config/tc-alpha.h $(INCDIR)/coff/internal.h \
96289857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
96389857Sobrien  struc-symbol.h ecoff.h $(INCDIR)/opcode/alpha.h $(INCDIR)/safe-ctype.h \
96489857Sobrien  $(srcdir)/config/atof-vax.c
96589857SobrienDEPTC_alpha_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \
96689857Sobrien  $(srcdir)/config/tc-alpha.h ecoff.h $(INCDIR)/coff/sym.h \
96789857Sobrien  $(INCDIR)/coff/ecoff.h subsegs.h $(INCDIR)/obstack.h \
96889857Sobrien  struc-symbol.h $(INCDIR)/opcode/alpha.h $(INCDIR)/safe-ctype.h \
96989857Sobrien  $(srcdir)/config/atof-vax.c
97089857SobrienDEPTC_alpha_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
97189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
97289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h \
97377298Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h ecoff.h \
97489857Sobrien  $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h $(INCDIR)/opcode/alpha.h \
97589857Sobrien  $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \
97689857Sobrien  dwarf2dbg.h $(INCDIR)/safe-ctype.h $(srcdir)/config/atof-vax.c
97789857SobrienDEPTC_alpha_evax = $(INCDIR)/symcat.h $(srcdir)/config/obj-evax.h \
97889857Sobrien  $(srcdir)/config/tc-alpha.h subsegs.h $(INCDIR)/obstack.h \
97989857Sobrien  struc-symbol.h ecoff.h $(INCDIR)/opcode/alpha.h $(INCDIR)/safe-ctype.h \
98038889Sjdp  $(srcdir)/config/atof-vax.c
98189857SobrienDEPTC_arc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
98289857Sobrien  $(srcdir)/config/tc-arc.h $(INCDIR)/coff/internal.h \
98389857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h struc-symbol.h \
98489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
98589857Sobrien  $(INCDIR)/opcode/arc.h $(srcdir)/../opcodes/arc-ext.h \
98689857Sobrien  $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
98789857SobrienDEPTC_arc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
98889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
98989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h \
99089857Sobrien  struc-symbol.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
99189857Sobrien  $(INCDIR)/opcode/arc.h $(srcdir)/../opcodes/arc-ext.h \
99289857Sobrien  $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
99389857SobrienDEPTC_arm_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
99489857Sobrien  $(srcdir)/config/tc-arm.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
99589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h
99689857SobrienDEPTC_arm_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
99789857Sobrien  $(srcdir)/config/tc-arm.h $(INCDIR)/coff/internal.h \
99889857Sobrien  $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
99989857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
100089857Sobrien  $(INCDIR)/obstack.h
100189857SobrienDEPTC_arm_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
100289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
100389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h \
100489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
100589857Sobrien  $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
100689857SobrienDEPTC_avr_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
100789857Sobrien  $(srcdir)/config/tc-avr.h $(INCDIR)/coff/internal.h \
100889857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
100977298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/avr.h
101089857SobrienDEPTC_avr_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
101189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
101289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-avr.h \
101389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
101489857Sobrien  $(INCDIR)/opcode/avr.h
101589857SobrienDEPTC_cris_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
101689857Sobrien  $(srcdir)/config/tc-cris.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
101789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
101877298Sobrien  $(INCDIR)/opcode/cris.h dwarf2dbg.h
101989857SobrienDEPTC_cris_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
102089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
102189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h \
102289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
102389857Sobrien  $(INCDIR)/opcode/cris.h dwarf2dbg.h
102489857SobrienDEPTC_d10v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
102589857Sobrien  $(srcdir)/config/tc-d10v.h $(INCDIR)/coff/internal.h \
102689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
102777298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/d10v.h \
102877298Sobrien  $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h
102989857SobrienDEPTC_d10v_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-d10v.h \
103289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
103389857Sobrien  $(INCDIR)/opcode/d10v.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h
103489857SobrienDEPTC_d30v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
103589857Sobrien  $(srcdir)/config/tc-d30v.h $(INCDIR)/coff/internal.h \
103689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
103777298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/d30v.h
103889857SobrienDEPTC_d30v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
103989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
104089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h \
104189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
104289857Sobrien  $(INCDIR)/opcode/d30v.h
104389857SobrienDEPTC_fr30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
104489857Sobrien  $(srcdir)/config/tc-fr30.h $(INCDIR)/coff/internal.h \
104589857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
104689857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/fr30-desc.h \
104777298Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/fr30-opc.h \
104877298Sobrien  cgen.h
104989857SobrienDEPTC_fr30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
105089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
105189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h \
105289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
105389857Sobrien  $(srcdir)/../opcodes/fr30-desc.h $(INCDIR)/opcode/cgen.h \
105489857Sobrien  $(srcdir)/../opcodes/fr30-opc.h cgen.h
105589857SobrienDEPTC_h8300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
105689857Sobrien  $(srcdir)/config/tc-h8300.h $(INCDIR)/coff/internal.h \
105789857Sobrien  $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
105889857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/h8300.h \
105989857Sobrien  $(INCDIR)/safe-ctype.h
106089857SobrienDEPTC_h8300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
106189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
106289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h \
106389857Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/h8300.h \
106489857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/elf/h8.h $(INCDIR)/elf/reloc-macros.h
106589857SobrienDEPTC_h8500_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
106689857Sobrien  $(srcdir)/config/tc-h8500.h $(INCDIR)/coff/internal.h \
106789857Sobrien  $(INCDIR)/coff/h8500.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
106889857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/h8500-opc.h \
106989857Sobrien  $(INCDIR)/safe-ctype.h
107089857SobrienDEPTC_h8500_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
107189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
107289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h \
107389857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/h8500-opc.h \
107489857Sobrien  $(INCDIR)/safe-ctype.h
107589857SobrienDEPTC_hppa_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
107689857Sobrien  $(srcdir)/config/tc-hppa.h $(INCDIR)/coff/internal.h \
107789857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
107877298Sobrien  subsegs.h $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h
107989857SobrienDEPTC_hppa_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
108089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
108189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h \
108289857Sobrien  $(BFDDIR)/elf32-hppa.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \
108389857Sobrien  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
108477298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/hppa.h \
108577298Sobrien  dwarf2dbg.h
108689857SobrienDEPTC_ia64_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
108789857Sobrien  $(srcdir)/config/tc-ia64.h $(INCDIR)/coff/internal.h \
108889857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
108977298Sobrien  dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h
109089857SobrienDEPTC_ia64_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
109189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
109289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ia64.h \
109389857Sobrien  $(INCDIR)/safe-ctype.h dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h
109489857SobrienDEPTC_i370_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
109589857Sobrien  $(srcdir)/config/tc-i370.h $(INCDIR)/coff/internal.h \
109689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
109777298Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/opcode/i370.h
109889857SobrienDEPTC_i370_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
109989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
110089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h \
110189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
110289857Sobrien  struc-symbol.h $(INCDIR)/opcode/i370.h $(INCDIR)/elf/i370.h
110389857SobrienDEPTC_i386_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
110489857Sobrien  $(srcdir)/config/tc-i386.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
110589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
110677298Sobrien  dwarf2dbg.h $(INCDIR)/opcode/i386.h
110789857SobrienDEPTC_i386_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
110889857Sobrien  $(srcdir)/config/tc-i386.h $(INCDIR)/coff/internal.h \
110989857Sobrien  $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
111089857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
111177298Sobrien  $(INCDIR)/obstack.h dwarf2dbg.h $(INCDIR)/opcode/i386.h
111289857SobrienDEPTC_i386_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
111389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
111489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h \
111589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
111689857Sobrien  dwarf2dbg.h $(INCDIR)/opcode/i386.h
111789857SobrienDEPTC_i860_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
111889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
111989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h \
112089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
112189857Sobrien  $(INCDIR)/opcode/i860.h $(INCDIR)/elf/i860.h $(INCDIR)/elf/reloc-macros.h
112289857SobrienDEPTC_i960_bout = $(INCDIR)/symcat.h $(srcdir)/config/obj-bout.h \
112389857Sobrien  $(srcdir)/config/tc-i960.h $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \
112438889Sjdp  $(INCDIR)/opcode/i960.h
112589857SobrienDEPTC_i960_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
112689857Sobrien  $(srcdir)/config/tc-i960.h $(INCDIR)/coff/internal.h \
112789857Sobrien  $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
112889857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/i960.h
112989857SobrienDEPTC_i960_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
113089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
113189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h \
113289857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/i960.h
113389857SobrienDEPTC_m32r_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
113489857Sobrien  $(srcdir)/config/tc-m32r.h $(INCDIR)/coff/internal.h \
113589857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
113689857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/m32r-desc.h \
113777298Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/m32r-opc.h \
113877298Sobrien  cgen.h
113989857SobrienDEPTC_m32r_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
114089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
114189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h \
114289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
114389857Sobrien  $(srcdir)/../opcodes/m32r-desc.h $(INCDIR)/opcode/cgen.h \
114489857Sobrien  $(srcdir)/../opcodes/m32r-opc.h cgen.h
114589857SobrienDEPTC_m68hc11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
114689857Sobrien  $(srcdir)/config/tc-m68hc11.h $(INCDIR)/coff/internal.h \
114789857Sobrien  $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
114889857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
114977298Sobrien  $(INCDIR)/obstack.h $(INCDIR)/opcode/m68hc11.h dwarf2dbg.h
115089857SobrienDEPTC_m68hc11_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-m68hc11.h \
115389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
115489857Sobrien  $(INCDIR)/opcode/m68hc11.h dwarf2dbg.h
115589857SobrienDEPTC_m68k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
115689857Sobrien  $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
115789857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h subsegs.h \
115889857Sobrien  dwarf2dbg.h $(INCDIR)/opcode/m68k.h $(srcdir)/config/m68k-parse.h
115989857SobrienDEPTC_m68k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
116089857Sobrien  $(srcdir)/config/tc-m68k.h $(INCDIR)/coff/internal.h \
116189857Sobrien  $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
116289857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \
116389857Sobrien  subsegs.h dwarf2dbg.h $(INCDIR)/opcode/m68k.h $(srcdir)/config/m68k-parse.h
116489857SobrienDEPTC_m68k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
116589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
116689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h \
116789857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h subsegs.h \
116889857Sobrien  dwarf2dbg.h $(INCDIR)/opcode/m68k.h $(srcdir)/config/m68k-parse.h \
116977298Sobrien  $(INCDIR)/elf/m68k.h $(INCDIR)/elf/reloc-macros.h
117089857SobrienDEPTC_m68k_hp300 = $(INCDIR)/symcat.h $(srcdir)/config/obj-hp300.h \
117189857Sobrien  $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
117289857Sobrien  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
117389857Sobrien  $(INCDIR)/obstack.h subsegs.h dwarf2dbg.h $(INCDIR)/opcode/m68k.h \
117438889Sjdp  $(srcdir)/config/m68k-parse.h
117589857SobrienDEPTC_m88k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
117689857Sobrien  $(srcdir)/config/tc-m88k.h $(INCDIR)/coff/internal.h \
117789857Sobrien  $(INCDIR)/coff/m88k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
117889857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
117977298Sobrien  $(INCDIR)/obstack.h $(srcdir)/config/m88k-opcode.h
118089857SobrienDEPTC_m88k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
118189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
118289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h \
118389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
118489857Sobrien  $(srcdir)/config/m88k-opcode.h
118589857SobrienDEPTC_mcore_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
118689857Sobrien  $(srcdir)/config/tc-mcore.h $(INCDIR)/coff/internal.h \
118789857Sobrien  $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
118889857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/mcore-opc.h \
118989857Sobrien  $(INCDIR)/safe-ctype.h
119089857SobrienDEPTC_mcore_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
119189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
119289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h \
119389857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/mcore-opc.h \
119489857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/elf/mcore.h $(INCDIR)/elf/reloc-macros.h
119589857SobrienDEPTC_mips_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
119689857Sobrien  $(srcdir)/config/tc-mips.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
119789857Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \
119877298Sobrien  $(INCDIR)/opcode/mips.h itbl-ops.h $(srcdir)/config/obj-elf.h \
119960484Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
120077298Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
120177298Sobrien  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
120289857SobrienDEPTC_mips_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
120389857Sobrien  $(srcdir)/config/tc-mips.h $(INCDIR)/coff/internal.h \
120489857Sobrien  $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
120589857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \
120689857Sobrien  $(INCDIR)/opcode/mips.h itbl-ops.h $(srcdir)/config/obj-elf.h \
120789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
120889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
120989857Sobrien  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
121089857SobrienDEPTC_mips_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \
121189857Sobrien  $(srcdir)/config/tc-mips.h ecoff.h $(INCDIR)/coff/sym.h \
121289857Sobrien  $(INCDIR)/coff/ecoff.h subsegs.h $(INCDIR)/obstack.h \
121389857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/mips.h itbl-ops.h \
121489857Sobrien  $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
121589857Sobrien  $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
121689857Sobrien  $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h
121789857SobrienDEPTC_mips_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
121889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
121989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h \
122089857Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \
122189857Sobrien  $(INCDIR)/opcode/mips.h itbl-ops.h $(INCDIR)/elf/mips.h \
122289857Sobrien  $(INCDIR)/elf/reloc-macros.h ecoff.h $(INCDIR)/coff/sym.h \
122389857Sobrien  $(INCDIR)/coff/ecoff.h
122489857SobrienDEPTC_mmix_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
122589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
122689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h \
122789857Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/elf/mmix.h \
122889857Sobrien  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/mmix.h \
122989857Sobrien  $(INCDIR)/safe-ctype.h dwarf2dbg.h
123089857SobrienDEPTC_mn10200_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
123189857Sobrien  $(srcdir)/config/tc-mn10200.h $(INCDIR)/coff/internal.h \
123289857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
123377298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10200.h
123489857SobrienDEPTC_mn10200_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
123589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
123689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h \
123789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
123889857Sobrien  $(INCDIR)/opcode/mn10200.h
123989857SobrienDEPTC_mn10300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
124089857Sobrien  $(srcdir)/config/tc-mn10300.h $(INCDIR)/coff/internal.h \
124189857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
124277298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10300.h \
124377298Sobrien  dwarf2dbg.h
124489857SobrienDEPTC_mn10300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
124589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
124689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h \
124789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
124889857Sobrien  $(INCDIR)/opcode/mn10300.h dwarf2dbg.h
124989857SobrienDEPTC_ns32k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
125089857Sobrien  $(srcdir)/config/tc-ns32k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
125189857Sobrien  $(INCDIR)/opcode/ns32k.h $(INCDIR)/obstack.h
125289857SobrienDEPTC_ns32k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
125389857Sobrien  $(srcdir)/config/tc-ns32k.h $(INCDIR)/coff/internal.h \
125489857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ns32k.h \
125538889Sjdp  $(INCDIR)/obstack.h
125689857SobrienDEPTC_ns32k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
125789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
125889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h \
125977298Sobrien  $(INCDIR)/opcode/ns32k.h $(INCDIR)/obstack.h
126089857SobrienDEPTC_openrisc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
126189857Sobrien  $(srcdir)/config/tc-openrisc.h $(INCDIR)/coff/internal.h \
126289857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
126389857Sobrien  $(srcdir)/../opcodes/openrisc-desc.h $(INCDIR)/opcode/cgen.h \
126489857Sobrien  $(srcdir)/../opcodes/openrisc-opc.h cgen.h
126589857SobrienDEPTC_openrisc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
126689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
126789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h \
126889857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/openrisc-desc.h \
126989857Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/openrisc-opc.h \
127089857Sobrien  cgen.h
127191041SobrienDEPTC_or32_coff = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
127291041Sobrien  $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-or32.h \
127391041Sobrien  $(INCDIR)/coff/internal.h $(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h \
127491041Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/opcode/or32.h $(INCDIR)/elf/or32.h \
127591041Sobrien  $(INCDIR)/elf/reloc-macros.h
127691041SobrienDEPTC_or32_elf = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
127791041Sobrien  $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
127891041Sobrien  $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
127991041Sobrien  $(srcdir)/config/tc-or32.h $(INCDIR)/opcode/or32.h \
128091041Sobrien  $(INCDIR)/elf/or32.h $(INCDIR)/elf/reloc-macros.h
128189857SobrienDEPTC_pdp11_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
128289857Sobrien  $(srcdir)/config/tc-pdp11.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
128389857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pdp11.h
128489857SobrienDEPTC_pdp11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
128589857Sobrien  $(srcdir)/config/tc-pdp11.h $(INCDIR)/coff/internal.h \
128689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
128789857Sobrien  $(INCDIR)/opcode/pdp11.h
128889857SobrienDEPTC_pdp11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
128989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
129089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h \
129189857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pdp11.h
129289857SobrienDEPTC_pj_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
129389857Sobrien  $(srcdir)/config/tc-pj.h $(INCDIR)/coff/internal.h \
129489857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
129577298Sobrien  $(INCDIR)/opcode/pj.h
129689857SobrienDEPTC_pj_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
129789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
129889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h \
129989857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pj.h
130089857SobrienDEPTC_ppc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
130189857Sobrien  $(srcdir)/config/tc-ppc.h $(INCDIR)/coff/internal.h \
130289857Sobrien  $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
130389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
130489857Sobrien  $(INCDIR)/opcode/ppc.h
130589857SobrienDEPTC_ppc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
130689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
130789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h \
130889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
130989857Sobrien  $(INCDIR)/opcode/ppc.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h \
131089857Sobrien  dwarf2dbg.h
131189857SobrienDEPTC_s390_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
131289857Sobrien  $(srcdir)/config/tc-s390.h $(INCDIR)/coff/internal.h \
131389857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
131489857Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/opcode/s390.h \
131589857Sobrien  $(INCDIR)/elf/s390.h $(INCDIR)/elf/reloc-macros.h
131689857SobrienDEPTC_s390_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
131789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
131889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h \
131989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
132089857Sobrien  struc-symbol.h $(INCDIR)/opcode/s390.h $(INCDIR)/elf/s390.h \
132189857Sobrien  $(INCDIR)/elf/reloc-macros.h
132289857SobrienDEPTC_sh_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
132389857Sobrien  $(srcdir)/config/tc-sh.h $(INCDIR)/coff/internal.h \
132489857Sobrien  $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
132589857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/sh-opc.h \
132689857Sobrien  $(INCDIR)/safe-ctype.h struc-symbol.h dwarf2dbg.h
132789857SobrienDEPTC_sh_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
132889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
132989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h \
133089857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/sh-opc.h \
133189857Sobrien  $(INCDIR)/safe-ctype.h struc-symbol.h $(INCDIR)/elf/sh.h \
133278828Sobrien  $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
133389857SobrienDEPTC_sparc_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
133489857Sobrien  $(srcdir)/config/tc-sparc.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
133589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
133677298Sobrien  $(INCDIR)/opcode/sparc.h
133789857SobrienDEPTC_sparc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
133889857Sobrien  $(srcdir)/config/tc-sparc.h $(INCDIR)/coff/internal.h \
133989857Sobrien  $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
134089857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
134189857Sobrien  $(INCDIR)/obstack.h $(INCDIR)/opcode/sparc.h
134289857SobrienDEPTC_sparc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
134389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
134489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h \
134589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
134689857Sobrien  $(INCDIR)/opcode/sparc.h $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \
134789857Sobrien  dwarf2dbg.h
134889857SobrienDEPTC_tahoe_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
134989857Sobrien  $(srcdir)/config/tc-tahoe.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
135089857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/tahoe.h
135189857SobrienDEPTC_tahoe_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
135289857Sobrien  $(srcdir)/config/tc-tahoe.h $(INCDIR)/coff/internal.h \
135389857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
135477298Sobrien  $(INCDIR)/obstack.h $(INCDIR)/opcode/tahoe.h
135589857SobrienDEPTC_tahoe_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
135689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
135789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h \
135889857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/tahoe.h
135989857SobrienDEPTC_tic30_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
136089857Sobrien  $(srcdir)/config/tc-tic30.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
136189857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h
136289857SobrienDEPTC_tic30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
136389857Sobrien  $(srcdir)/config/tc-tic30.h $(INCDIR)/coff/internal.h \
136489857Sobrien  $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
136589857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h
136689857SobrienDEPTC_tic30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
136789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
136889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic30.h \
136989857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h
137089857SobrienDEPTC_tic54x_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
137189857Sobrien  $(srcdir)/config/tc-tic54x.h $(INCDIR)/coff/internal.h \
137289857Sobrien  $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \
137389857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h sb.h macro.h \
137477298Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/opcode/tic54x.h
137589857SobrienDEPTC_tic54x_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
137689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
137789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic54x.h \
137889857Sobrien  $(INCDIR)/safe-ctype.h sb.h macro.h subsegs.h $(INCDIR)/obstack.h \
137989857Sobrien  struc-symbol.h $(INCDIR)/opcode/tic54x.h $(srcdir)/config/obj-coff.h \
138077298Sobrien  $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h \
138177298Sobrien  $(BFDDIR)/libcoff.h
138289857SobrienDEPTC_tic80_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
138389857Sobrien  $(srcdir)/config/tc-tic80.h $(INCDIR)/coff/internal.h \
138489857Sobrien  $(INCDIR)/coff/tic80.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
138589857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic80.h
138689857SobrienDEPTC_tic80_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
138789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
138889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic80.h \
138989857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic80.h
139089857SobrienDEPTC_vax_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
139189857Sobrien  $(srcdir)/config/tc-vax.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
139289857Sobrien  $(srcdir)/config/vax-inst.h $(INCDIR)/obstack.h $(INCDIR)/opcode/vax.h \
139389857Sobrien  $(INCDIR)/safe-ctype.h
139489857SobrienDEPTC_vax_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
139589857Sobrien  $(srcdir)/config/tc-vax.h $(INCDIR)/coff/internal.h \
139689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(srcdir)/config/vax-inst.h \
139789857Sobrien  $(INCDIR)/obstack.h $(INCDIR)/opcode/vax.h $(INCDIR)/safe-ctype.h
139889857SobrienDEPTC_vax_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
139989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
140089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h \
140189857Sobrien  $(srcdir)/config/vax-inst.h $(INCDIR)/obstack.h $(INCDIR)/opcode/vax.h \
140289857Sobrien  $(INCDIR)/safe-ctype.h
140389857SobrienDEPTC_vax_vms = $(INCDIR)/symcat.h $(srcdir)/config/obj-vms.h \
140489857Sobrien  $(srcdir)/config/tc-vax.h $(INCDIR)/aout/stab_gnu.h \
140589857Sobrien  $(INCDIR)/aout/stab.def $(srcdir)/config/vax-inst.h \
140689857Sobrien  $(INCDIR)/obstack.h $(INCDIR)/opcode/vax.h $(INCDIR)/safe-ctype.h
140789857SobrienDEPTC_w65_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
140889857Sobrien  $(srcdir)/config/tc-w65.h $(INCDIR)/coff/internal.h \
140989857Sobrien  $(INCDIR)/coff/w65.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
141077298Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/w65-opc.h
141189857SobrienDEPTC_w65_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
141289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
141389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h \
141489857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/w65-opc.h
141589857SobrienDEPTC_v850_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
141689857Sobrien  $(srcdir)/config/tc-v850.h $(INCDIR)/coff/internal.h \
141789857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
141877298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/v850.h \
141977298Sobrien  dwarf2dbg.h
142089857SobrienDEPTC_v850_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
142189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
142289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h \
142389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
142489857Sobrien  $(INCDIR)/opcode/v850.h dwarf2dbg.h
142589857SobrienDEPTC_xstormy16_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
142689857Sobrien  $(srcdir)/config/tc-xstormy16.h $(INCDIR)/coff/internal.h \
142789857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
142889857Sobrien  $(srcdir)/../opcodes/xstormy16-desc.h $(INCDIR)/opcode/cgen.h \
142989857Sobrien  $(srcdir)/../opcodes/xstormy16-opc.h cgen.h
143089857SobrienDEPTC_xstormy16_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
143189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
143289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h \
143389857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/xstormy16-desc.h \
143489857Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/xstormy16-opc.h \
143589857Sobrien  cgen.h
143689857SobrienDEPTC_z8k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
143777298Sobrien  $(srcdir)/config/tc-z8k.h $(INCDIR)/coff/internal.h \
143889857Sobrien  $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
143989857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/z8k-opc.h
144089857SobrienDEPTC_z8k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
144160484Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
144289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h \
144389857Sobrien  $(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/z8k-opc.h
144460484SobrienDEPTC_hppa_som = $(srcdir)/config/tc-hppa.h subsegs.h \
144538889Sjdp  $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h \
144638889Sjdp  $(BFDDIR)/som.h
144760484SobrienDEPTC_i386_multi = $(DEPTC_i386_aout) $(DEPTC_i386_coff) \
144860484Sobrien  $(DEPTC_i386_elf)
144960484SobrienDEPTC_mips_multi = $(DEPTC_mips_coff) $(DEPTC_mips_ecoff) \
145060484Sobrien  $(DEPTC_mips_elf)
145177298SobrienDEPTC_cris_multi = $(DEPTC_cris_aout) $(DEPTC_cris_elf)
145289857SobrienDEPOBJ_a29k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
145389857Sobrien  $(srcdir)/config/tc-a29k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
145489857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
145589857SobrienDEPOBJ_a29k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
145689857Sobrien  $(srcdir)/config/tc-a29k.h $(INCDIR)/coff/internal.h \
145789857Sobrien  $(INCDIR)/coff/a29k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
145877298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
145989857SobrienDEPOBJ_a29k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
146089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
146189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h \
146289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
146389857Sobrien  $(INCDIR)/aout/aout64.h
146489857SobrienDEPOBJ_alpha_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
146589857Sobrien  $(srcdir)/config/tc-alpha.h $(INCDIR)/coff/internal.h \
146689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
146789857Sobrien  subsegs.h
146889857SobrienDEPOBJ_alpha_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \
146989857Sobrien  $(srcdir)/config/tc-alpha.h ecoff.h $(INCDIR)/coff/sym.h \
147089857Sobrien  $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
147189857Sobrien  $(INCDIR)/bfdlink.h $(BFDDIR)/libecoff.h
147289857SobrienDEPOBJ_alpha_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
147389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
147489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h \
147589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
147677298Sobrien  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
147777298Sobrien  $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \
147860484Sobrien  $(INCDIR)/aout/aout64.h
147989857SobrienDEPOBJ_alpha_evax = $(INCDIR)/symcat.h $(srcdir)/config/obj-evax.h \
148089857Sobrien  $(srcdir)/config/tc-alpha.h
148189857SobrienDEPOBJ_arc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
148289857Sobrien  $(srcdir)/config/tc-arc.h $(INCDIR)/coff/internal.h \
148389857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h struc-symbol.h \
148477298Sobrien  $(INCDIR)/obstack.h subsegs.h
148589857SobrienDEPOBJ_arc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
148689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
148789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h \
148889857Sobrien  struc-symbol.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
148989857Sobrien  $(INCDIR)/aout/aout64.h
149089857SobrienDEPOBJ_arm_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
149189857Sobrien  $(srcdir)/config/tc-arm.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
149289857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
149389857SobrienDEPOBJ_arm_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
149489857Sobrien  $(srcdir)/config/tc-arm.h $(INCDIR)/coff/internal.h \
149589857Sobrien  $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
149677298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
149789857SobrienDEPOBJ_arm_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
149889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
149989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h \
150089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
150189857Sobrien  $(INCDIR)/aout/aout64.h
150289857SobrienDEPOBJ_avr_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
150389857Sobrien  $(srcdir)/config/tc-avr.h $(INCDIR)/coff/internal.h \
150489857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
150589857Sobrien  subsegs.h
150689857SobrienDEPOBJ_avr_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
150789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
150889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-avr.h \
150989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
151089857Sobrien  $(INCDIR)/aout/aout64.h
151189857SobrienDEPOBJ_cris_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
151289857Sobrien  $(srcdir)/config/tc-cris.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
151389857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
151489857SobrienDEPOBJ_cris_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
151589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
151689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h \
151789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
151889857Sobrien  $(INCDIR)/aout/aout64.h
151989857SobrienDEPOBJ_d10v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
152089857Sobrien  $(srcdir)/config/tc-d10v.h $(INCDIR)/coff/internal.h \
152189857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
152289857Sobrien  subsegs.h
152389857SobrienDEPOBJ_d10v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
152489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
152589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h \
152689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
152789857Sobrien  $(INCDIR)/aout/aout64.h
152889857SobrienDEPOBJ_d30v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
152989857Sobrien  $(srcdir)/config/tc-d30v.h $(INCDIR)/coff/internal.h \
153089857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
153189857Sobrien  subsegs.h
153289857SobrienDEPOBJ_d30v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
153389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
153489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h \
153589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
153689857Sobrien  $(INCDIR)/aout/aout64.h
153789857SobrienDEPOBJ_fr30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
153889857Sobrien  $(srcdir)/config/tc-fr30.h $(INCDIR)/coff/internal.h \
153989857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
154089857Sobrien  subsegs.h
154189857SobrienDEPOBJ_fr30_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-fr30.h \
154489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
154589857Sobrien  $(INCDIR)/aout/aout64.h
154689857SobrienDEPOBJ_h8300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
154789857Sobrien  $(srcdir)/config/tc-h8300.h $(INCDIR)/coff/internal.h \
154889857Sobrien  $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
154977298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
155089857SobrienDEPOBJ_h8300_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-h8300.h \
155389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
155489857Sobrien  $(INCDIR)/aout/aout64.h
155589857SobrienDEPOBJ_h8500_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
155689857Sobrien  $(srcdir)/config/tc-h8500.h $(INCDIR)/coff/internal.h \
155789857Sobrien  $(INCDIR)/coff/h8500.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
155889857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
155989857SobrienDEPOBJ_h8500_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
156089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
156189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h \
156289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
156389857Sobrien  $(INCDIR)/aout/aout64.h
156489857SobrienDEPOBJ_hppa_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
156589857Sobrien  $(srcdir)/config/tc-hppa.h $(INCDIR)/coff/internal.h \
156689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
156789857Sobrien  subsegs.h
156889857SobrienDEPOBJ_hppa_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
156989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
157089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h \
157189857Sobrien  $(BFDDIR)/elf32-hppa.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \
157289857Sobrien  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
157377298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h
157489857SobrienDEPOBJ_ia64_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
157589857Sobrien  $(srcdir)/config/tc-ia64.h $(INCDIR)/coff/internal.h \
157689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
157789857Sobrien  subsegs.h
157889857SobrienDEPOBJ_ia64_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
157989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
158089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ia64.h \
158189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
158289857Sobrien  $(INCDIR)/aout/aout64.h
158389857SobrienDEPOBJ_i370_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
158489857Sobrien  $(srcdir)/config/tc-i370.h $(INCDIR)/coff/internal.h \
158589857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
158689857Sobrien  subsegs.h
158789857SobrienDEPOBJ_i370_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
158889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
158989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h \
159089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
159189857Sobrien  $(INCDIR)/elf/i370.h $(INCDIR)/aout/aout64.h
159289857SobrienDEPOBJ_i386_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
159389857Sobrien  $(srcdir)/config/tc-i386.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
159489857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
159589857SobrienDEPOBJ_i386_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
159689857Sobrien  $(srcdir)/config/tc-i386.h $(INCDIR)/coff/internal.h \
159789857Sobrien  $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
159877298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
159989857SobrienDEPOBJ_i386_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
160089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
160189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h \
160289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
160389857Sobrien  $(INCDIR)/aout/aout64.h
160489857SobrienDEPOBJ_i860_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
160589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
160689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h \
160789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
160889857Sobrien  $(INCDIR)/aout/aout64.h
160989857SobrienDEPOBJ_i960_bout = $(INCDIR)/symcat.h $(srcdir)/config/obj-bout.h \
161089857Sobrien  $(srcdir)/config/tc-i960.h $(INCDIR)/obstack.h
161189857SobrienDEPOBJ_i960_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
161289857Sobrien  $(srcdir)/config/tc-i960.h $(INCDIR)/coff/internal.h \
161389857Sobrien  $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
161477298Sobrien  $(INCDIR)/obstack.h subsegs.h
161589857SobrienDEPOBJ_i960_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
161689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
161789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h \
161889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
161989857Sobrien  $(INCDIR)/aout/aout64.h
162089857SobrienDEPOBJ_m32r_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
162189857Sobrien  $(srcdir)/config/tc-m32r.h $(INCDIR)/coff/internal.h \
162289857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
162389857Sobrien  subsegs.h
162489857SobrienDEPOBJ_m32r_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
162589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
162689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h \
162789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
162889857Sobrien  $(INCDIR)/aout/aout64.h
162989857SobrienDEPOBJ_m68hc11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
163089857Sobrien  $(srcdir)/config/tc-m68hc11.h $(INCDIR)/coff/internal.h \
163189857Sobrien  $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
163277298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
163389857SobrienDEPOBJ_m68hc11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
163489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
163589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h \
163689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
163789857Sobrien  $(INCDIR)/aout/aout64.h
163889857SobrienDEPOBJ_m68k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
163960484Sobrien  $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
164077298Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
164189857SobrienDEPOBJ_m68k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
164289857Sobrien  $(srcdir)/config/tc-m68k.h $(INCDIR)/coff/internal.h \
164389857Sobrien  $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
164477298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
164589857SobrienDEPOBJ_m68k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
164689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
164789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h \
164889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
164989857Sobrien  $(INCDIR)/aout/aout64.h
165089857SobrienDEPOBJ_m68k_hp300 = $(srcdir)/config/obj-aout.c $(INCDIR)/symcat.h \
165189857Sobrien  $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
165277298Sobrien  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
165338889Sjdp  $(INCDIR)/obstack.h
165489857SobrienDEPOBJ_m88k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
165589857Sobrien  $(srcdir)/config/tc-m88k.h $(INCDIR)/coff/internal.h \
165689857Sobrien  $(INCDIR)/coff/m88k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
165777298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
165889857SobrienDEPOBJ_m88k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
165989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
166089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h \
166189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
166289857Sobrien  $(INCDIR)/aout/aout64.h
166389857SobrienDEPOBJ_mcore_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
166489857Sobrien  $(srcdir)/config/tc-mcore.h $(INCDIR)/coff/internal.h \
166589857Sobrien  $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
166689857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
166789857SobrienDEPOBJ_mcore_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
166889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
166989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h \
167089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
167189857Sobrien  $(INCDIR)/aout/aout64.h
167289857SobrienDEPOBJ_mips_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
167389857Sobrien  $(srcdir)/config/tc-mips.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
167489857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
167589857SobrienDEPOBJ_mips_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
167689857Sobrien  $(srcdir)/config/tc-mips.h $(INCDIR)/coff/internal.h \
167789857Sobrien  $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
167889857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
167989857SobrienDEPOBJ_mips_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \
168089857Sobrien  $(srcdir)/config/tc-mips.h ecoff.h $(INCDIR)/coff/sym.h \
168189857Sobrien  $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
168289857Sobrien  $(INCDIR)/bfdlink.h $(BFDDIR)/libecoff.h
168389857SobrienDEPOBJ_mips_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
168489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
168589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h \
168689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
168777298Sobrien  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
168877298Sobrien  $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/aout/aout64.h
168989857SobrienDEPOBJ_mmix_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
169089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
169189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h \
169289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
169389857Sobrien  $(INCDIR)/aout/aout64.h
169489857SobrienDEPOBJ_mn10200_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
169589857Sobrien  $(srcdir)/config/tc-mn10200.h $(INCDIR)/coff/internal.h \
169689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
169789857Sobrien  subsegs.h
169889857SobrienDEPOBJ_mn10200_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
169989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
170089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h \
170189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
170289857Sobrien  $(INCDIR)/aout/aout64.h
170389857SobrienDEPOBJ_mn10300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
170489857Sobrien  $(srcdir)/config/tc-mn10300.h $(INCDIR)/coff/internal.h \
170589857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
170689857Sobrien  subsegs.h
170789857SobrienDEPOBJ_mn10300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
170889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
170989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h \
171089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
171189857Sobrien  $(INCDIR)/aout/aout64.h
171289857SobrienDEPOBJ_ns32k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
171389857Sobrien  $(srcdir)/config/tc-ns32k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
171489857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
171589857SobrienDEPOBJ_ns32k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
171689857Sobrien  $(srcdir)/config/tc-ns32k.h $(INCDIR)/coff/internal.h \
171789857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
171889857Sobrien  subsegs.h
171989857SobrienDEPOBJ_ns32k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
172089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
172189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h \
172289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
172389857Sobrien  $(INCDIR)/aout/aout64.h
172489857SobrienDEPOBJ_openrisc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
172589857Sobrien  $(srcdir)/config/tc-openrisc.h $(INCDIR)/coff/internal.h \
172689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
172789857Sobrien  subsegs.h
172889857SobrienDEPOBJ_openrisc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
172989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
173089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h \
173189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
173289857Sobrien  $(INCDIR)/aout/aout64.h
173391041SobrienDEPOBJ_or32_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
173491041Sobrien  $(srcdir)/config/tc-or32.h $(INCDIR)/coff/internal.h \
173591041Sobrien  $(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
173691041Sobrien  $(INCDIR)/obstack.h subsegs.h
173791041SobrienDEPOBJ_or32_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
173891041Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
173991041Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-or32.h \
174091041Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
174191041Sobrien  $(INCDIR)/aout/aout64.h
174289857SobrienDEPOBJ_pdp11_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
174389857Sobrien  $(srcdir)/config/tc-pdp11.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
174489857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
174589857SobrienDEPOBJ_pdp11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
174689857Sobrien  $(srcdir)/config/tc-pdp11.h $(INCDIR)/coff/internal.h \
174789857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
174889857Sobrien  subsegs.h
174989857SobrienDEPOBJ_pdp11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
175089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
175189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h \
175289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
175389857Sobrien  $(INCDIR)/aout/aout64.h
175489857SobrienDEPOBJ_pj_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
175589857Sobrien  $(srcdir)/config/tc-pj.h $(INCDIR)/coff/internal.h \
175689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
175789857Sobrien  subsegs.h
175889857SobrienDEPOBJ_pj_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
175989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
176089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h \
176189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
176289857Sobrien  $(INCDIR)/aout/aout64.h
176389857SobrienDEPOBJ_ppc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
176489857Sobrien  $(srcdir)/config/tc-ppc.h $(INCDIR)/coff/internal.h \
176589857Sobrien  $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
176677298Sobrien  $(INCDIR)/obstack.h subsegs.h
176789857SobrienDEPOBJ_ppc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
176889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
176989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h \
177089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
177189857Sobrien  $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/aout/aout64.h
177289857SobrienDEPOBJ_s390_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
177389857Sobrien  $(srcdir)/config/tc-s390.h $(INCDIR)/coff/internal.h \
177489857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
177589857Sobrien  subsegs.h
177689857SobrienDEPOBJ_s390_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
177789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
177889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h \
177989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
178089857Sobrien  $(INCDIR)/aout/aout64.h
178189857SobrienDEPOBJ_sh_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
178289857Sobrien  $(srcdir)/config/tc-sh.h $(INCDIR)/coff/internal.h \
178389857Sobrien  $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
178477298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
178589857SobrienDEPOBJ_sh_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
178689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
178789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h \
178889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
178960484Sobrien  $(INCDIR)/aout/aout64.h
179091041SobrienDEPTC_sh64_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
179191041Sobrien  $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
179291041Sobrien  $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h $(srcdir)/config/tc-sh.h \
179391041Sobrien  $(srcdir)/../opcodes/sh64-opc.h $(srcdir)/config/tc-sh.c \
179491041Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/sh-opc.h \
179591041Sobrien  struc-symbol.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
179691041Sobrien  dwarf2dbg.h $(INCDIR)/symcat.h
179791041SobrienDEPOBJ_sh64_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
179891041Sobrien  $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
179991041Sobrien  $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h $(srcdir)/config/tc-sh.h \
180091041Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h $(INCDIR)/elf/sh.h
180191041SobrienDEP_sh64_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
180291041Sobrien  $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
180391041Sobrien  $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h $(srcdir)/config/tc-sh.h
180489857SobrienDEPOBJ_sparc_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
180589857Sobrien  $(srcdir)/config/tc-sparc.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
180689857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
180789857SobrienDEPOBJ_sparc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
180889857Sobrien  $(srcdir)/config/tc-sparc.h $(INCDIR)/coff/internal.h \
180989857Sobrien  $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
181077298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
181189857SobrienDEPOBJ_sparc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
181289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
181389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h \
181489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
181589857Sobrien  $(INCDIR)/aout/aout64.h
181689857SobrienDEPOBJ_tahoe_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
181789857Sobrien  $(srcdir)/config/tc-tahoe.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
181889857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
181989857SobrienDEPOBJ_tahoe_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
182089857Sobrien  $(srcdir)/config/tc-tahoe.h $(INCDIR)/coff/internal.h \
182189857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
182289857Sobrien  subsegs.h
182389857SobrienDEPOBJ_tahoe_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
182489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
182589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h \
182689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
182789857Sobrien  $(INCDIR)/aout/aout64.h
182889857SobrienDEPOBJ_tic30_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
182989857Sobrien  $(srcdir)/config/tc-tic30.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
183089857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
183189857SobrienDEPOBJ_tic30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
183289857Sobrien  $(srcdir)/config/tc-tic30.h $(INCDIR)/coff/internal.h \
183389857Sobrien  $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
183477298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
183589857SobrienDEPOBJ_tic30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
183689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
183789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic30.h \
183889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
183989857Sobrien  $(INCDIR)/aout/aout64.h
184089857SobrienDEPOBJ_tic54x_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
184189857Sobrien  $(srcdir)/config/tc-tic54x.h $(INCDIR)/coff/internal.h \
184289857Sobrien  $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \
184377298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
184489857SobrienDEPOBJ_tic54x_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
184589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
184689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic54x.h \
184789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
184889857Sobrien  $(INCDIR)/aout/aout64.h
184989857SobrienDEPOBJ_tic80_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
185089857Sobrien  $(srcdir)/config/tc-tic80.h $(INCDIR)/coff/internal.h \
185189857Sobrien  $(INCDIR)/coff/tic80.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
185289857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
185389857SobrienDEPOBJ_tic80_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
185489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
185589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic80.h \
185689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
185789857Sobrien  $(INCDIR)/aout/aout64.h
185889857SobrienDEPOBJ_vax_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
185989857Sobrien  $(srcdir)/config/tc-vax.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
186089857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
186189857SobrienDEPOBJ_vax_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
186289857Sobrien  $(srcdir)/config/tc-vax.h $(INCDIR)/coff/internal.h \
186377298Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
186460484Sobrien  subsegs.h
186589857SobrienDEPOBJ_vax_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
186689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
186789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h \
186889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
186989857Sobrien  $(INCDIR)/aout/aout64.h
187089857SobrienDEPOBJ_vax_vms = $(INCDIR)/symcat.h $(srcdir)/config/obj-vms.h \
187189857Sobrien  $(srcdir)/config/tc-vax.h $(INCDIR)/aout/stab_gnu.h \
187289857Sobrien  $(INCDIR)/aout/stab.def $(INCDIR)/safe-ctype.h subsegs.h \
187377298Sobrien  $(INCDIR)/obstack.h
187489857SobrienDEPOBJ_w65_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
187589857Sobrien  $(srcdir)/config/tc-w65.h $(INCDIR)/coff/internal.h \
187689857Sobrien  $(INCDIR)/coff/w65.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
187777298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
187889857SobrienDEPOBJ_w65_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
187989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
188089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h \
188189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
188289857Sobrien  $(INCDIR)/aout/aout64.h
188389857SobrienDEPOBJ_v850_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
188489857Sobrien  $(srcdir)/config/tc-v850.h $(INCDIR)/coff/internal.h \
188589857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
188689857Sobrien  subsegs.h
188789857SobrienDEPOBJ_v850_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
188889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
188989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h \
189089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
189189857Sobrien  $(INCDIR)/aout/aout64.h
189289857SobrienDEPOBJ_xstormy16_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
189389857Sobrien  $(srcdir)/config/tc-xstormy16.h $(INCDIR)/coff/internal.h \
189489857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
189589857Sobrien  subsegs.h
189689857SobrienDEPOBJ_xstormy16_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
189789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
189889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h \
189989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
190089857Sobrien  $(INCDIR)/aout/aout64.h
190189857SobrienDEPOBJ_z8k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
190289857Sobrien  $(srcdir)/config/tc-z8k.h $(INCDIR)/coff/internal.h \
190389857Sobrien  $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
190477298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
190589857SobrienDEPOBJ_z8k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
190689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
190789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h \
190889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
190989857Sobrien  $(INCDIR)/aout/aout64.h
191060484SobrienDEPOBJ_hppa_som = $(srcdir)/config/obj-som.h subsegs.h \
191138889Sjdp  $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(BFDDIR)/som.h \
191238889Sjdp  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
191360484SobrienDEPOBJ_i386_multi = $(DEPOBJ_i386_aout) $(DEPOBJ_i386_coff) \
191460484Sobrien  $(DEPOBJ_i386_elf)
191560484SobrienDEPOBJ_mips_multi = $(DEPOBJ_mips_coff) $(DEPOBJ_mips_ecoff) \
191660484Sobrien  $(DEPOBJ_mips_elf)
191777298SobrienDEPOBJ_cris_multi = $(DEPOBJ_cris_aout) $(DEPOBJ_cris_elf)
191838889SjdpDEP_a29k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-a29k.h \
191938889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
192038889SjdpDEP_a29k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-a29k.h \
192189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/a29k.h \
192289857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
192389857SobrienDEP_a29k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
192489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
192589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h
192689857SobrienDEP_alpha_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-alpha.h \
192789857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
192838889Sjdp  $(INCDIR)/bfdlink.h
192938889SjdpDEP_alpha_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-alpha.h \
193038889Sjdp  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
193189857SobrienDEP_alpha_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
193289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
193389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h
193438889SjdpDEP_alpha_evax = $(srcdir)/config/obj-evax.h $(srcdir)/config/tc-alpha.h
193538889SjdpDEP_arc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arc.h \
193689857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
193789857Sobrien  $(INCDIR)/bfdlink.h
193889857SobrienDEP_arc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
193989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
194089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h
194138889SjdpDEP_arm_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-arm.h \
194238889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
194338889SjdpDEP_arm_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arm.h \
194489857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/arm.h \
194589857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
194689857SobrienDEP_arm_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
194789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
194889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h
194989857SobrienDEP_avr_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-avr.h \
195089857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
195138889Sjdp  $(INCDIR)/bfdlink.h
195289857SobrienDEP_avr_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
195389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
195489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-avr.h
195577298SobrienDEP_cris_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-cris.h \
195677298Sobrien  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
195789857SobrienDEP_cris_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
195889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
195989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h
196038889SjdpDEP_d10v_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-d10v.h \
196189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
196289857Sobrien  $(INCDIR)/bfdlink.h
196389857SobrienDEP_d10v_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
196489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
196589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h
196660484SobrienDEP_d30v_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-d30v.h \
196789857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
196889857Sobrien  $(INCDIR)/bfdlink.h
196989857SobrienDEP_d30v_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
197089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
197189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h
197260484SobrienDEP_fr30_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-fr30.h \
197389857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
197489857Sobrien  $(INCDIR)/bfdlink.h
197589857SobrienDEP_fr30_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
197689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
197789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h
197838889SjdpDEP_h8300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8300.h \
197989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8300.h \
198089857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
198189857SobrienDEP_h8300_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
198289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
198389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h
198438889SjdpDEP_h8500_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8500.h \
198589857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8500.h \
198689857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
198789857SobrienDEP_h8500_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
198889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
198989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h
199089857SobrienDEP_hppa_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-hppa.h \
199189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
199238889Sjdp  $(INCDIR)/bfdlink.h
199389857SobrienDEP_hppa_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-hppa.h \
199689857Sobrien  $(BFDDIR)/elf32-hppa.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \
199789857Sobrien  $(INCDIR)/elf/reloc-macros.h
199877298SobrienDEP_ia64_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ia64.h \
199977298Sobrien  $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
200089857SobrienDEP_ia64_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-ia64.h
200360484SobrienDEP_i370_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i370.h \
200489857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
200589857Sobrien  $(INCDIR)/bfdlink.h
200689857SobrienDEP_i370_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
200789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
200889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h
200938889SjdpDEP_i386_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i386.h \
201038889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
201138889SjdpDEP_i386_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i386.h \
201289857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h \
201389857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
201489857SobrienDEP_i386_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-i386.h
201789857SobrienDEP_i860_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
201889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
201989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h
202038889SjdpDEP_i960_bout = $(srcdir)/config/obj-bout.h $(srcdir)/config/tc-i960.h
202138889SjdpDEP_i960_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i960.h \
202289857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/i960.h \
202389857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
202489857SobrienDEP_i960_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
202589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
202689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h
202789857SobrienDEP_m32r_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m32r.h \
202889857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
202938889Sjdp  $(INCDIR)/bfdlink.h
203089857SobrienDEP_m32r_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
203189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
203289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h
203377298SobrienDEP_m68hc11_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68hc11.h \
203489857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h \
203589857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
203689857SobrienDEP_m68hc11_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
203789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
203889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h
203938889SjdpDEP_m68k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
204038889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
204138889SjdpDEP_m68k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68k.h \
204289857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h \
204389857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
204489857SobrienDEP_m68k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
204589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
204689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h
204738889SjdpDEP_m68k_hp300 = $(srcdir)/config/obj-hp300.h $(srcdir)/config/obj-aout.h \
204838889Sjdp  $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
204938889SjdpDEP_m88k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m88k.h \
205089857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/m88k.h \
205189857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
205289857SobrienDEP_m88k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
205389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
205489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h
205560484SobrienDEP_mcore_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mcore.h \
205689857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/mcore.h \
205789857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
205889857SobrienDEP_mcore_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
205989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
206089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h
206138889SjdpDEP_mips_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-mips.h \
206238889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
206338889SjdpDEP_mips_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mips.h \
206489857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/mipspe.h \
206589857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
206638889SjdpDEP_mips_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-mips.h \
206738889Sjdp  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
206889857SobrienDEP_mips_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
206989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
207089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h
207189857SobrienDEP_mmix_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
207289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
207389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h
207438889SjdpDEP_mn10200_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10200.h \
207589857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
207689857Sobrien  $(INCDIR)/bfdlink.h
207789857SobrienDEP_mn10200_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
207889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
207989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h
208038889SjdpDEP_mn10300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10300.h \
208189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
208289857Sobrien  $(INCDIR)/bfdlink.h
208389857SobrienDEP_mn10300_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-mn10300.h
208638889SjdpDEP_ns32k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-ns32k.h \
208738889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
208838889SjdpDEP_ns32k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ns32k.h \
208989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
209089857Sobrien  $(INCDIR)/bfdlink.h
209189857SobrienDEP_ns32k_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-ns32k.h
209489857SobrienDEP_openrisc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-openrisc.h \
209589857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
209689857Sobrien  $(INCDIR)/bfdlink.h
209789857SobrienDEP_openrisc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
209889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
209989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h
210091041SobrienDEP_or32_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-or32.h \
210191041Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/or32.h \
210291041Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
210391041SobrienDEP_or32_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
210491041Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
210591041Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-or32.h
210689857SobrienDEP_pdp11_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-pdp11.h \
210789857Sobrien  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
210889857SobrienDEP_pdp11_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-pdp11.h \
210989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
211089857Sobrien  $(INCDIR)/bfdlink.h
211189857SobrienDEP_pdp11_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
211289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
211389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h
211460484SobrienDEP_pj_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-pj.h \
211589857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
211689857Sobrien  $(INCDIR)/bfdlink.h
211789857SobrienDEP_pj_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
211889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
211989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h
212038889SjdpDEP_ppc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ppc.h \
212189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6000.h \
212289857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
212389857SobrienDEP_ppc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
212489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
212589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h
212689857SobrienDEP_s390_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-s390.h \
212789857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
212838889Sjdp  $(INCDIR)/bfdlink.h
212989857SobrienDEP_s390_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-s390.h
213238889SjdpDEP_sh_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sh.h \
213389857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sh.h \
213489857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
213589857SobrienDEP_sh_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-sh.h
213838889SjdpDEP_sparc_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-sparc.h \
213938889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
214038889SjdpDEP_sparc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sparc.h \
214189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sparc.h \
214289857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
214389857SobrienDEP_sparc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
214489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
214589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h
214638889SjdpDEP_tahoe_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tahoe.h \
214738889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
214838889SjdpDEP_tahoe_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tahoe.h \
214989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
215089857Sobrien  $(INCDIR)/bfdlink.h
215189857SobrienDEP_tahoe_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
215289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
215389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h
215438889SjdpDEP_tic30_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tic30.h \
215538889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
215638889SjdpDEP_tic30_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic30.h \
215789857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic30.h \
215889857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
215989857SobrienDEP_tic30_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
216089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
216189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic30.h
216277298SobrienDEP_tic54x_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic54x.h \
216389857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic54x.h \
216489857Sobrien  $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
216589857SobrienDEP_tic54x_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
216689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
216789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic54x.h
216860484SobrienDEP_tic80_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic80.h \
216989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic80.h \
217089857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
217189857SobrienDEP_tic80_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
217289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
217389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic80.h
217438889SjdpDEP_vax_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-vax.h \
217538889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
217638889SjdpDEP_vax_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-vax.h \
217789857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
217889857Sobrien  $(INCDIR)/bfdlink.h
217989857SobrienDEP_vax_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
218089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
218189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h
218238889SjdpDEP_vax_vms = $(srcdir)/config/obj-vms.h $(srcdir)/config/tc-vax.h \
218338889Sjdp  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
218438889SjdpDEP_w65_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-w65.h \
218589857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/w65.h \
218689857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
218789857SobrienDEP_w65_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
218889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
218989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h
219089857SobrienDEP_v850_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-v850.h \
219189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
219238889Sjdp  $(INCDIR)/bfdlink.h
219389857SobrienDEP_v850_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
219489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
219589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h
219689857SobrienDEP_xstormy16_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-xstormy16.h \
219789857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
219889857Sobrien  $(INCDIR)/bfdlink.h
219989857SobrienDEP_xstormy16_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
220089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
220189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h
220238889SjdpDEP_z8k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-z8k.h \
220389857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/z8k.h \
220489857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
220589857SobrienDEP_z8k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
220689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
220789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h
220838889SjdpDEP_hppa_som = $(BFDDIR)/som.h
220960484SobrienDEP_i386_multi = $(DEP_i386_aout) $(DEP_i386_coff) \
221060484Sobrien  $(DEP_i386_elf)
221138889SjdpDEP_mips_multi = $(DEP_mips_coff) $(DEP_mips_ecoff) \
221238889Sjdp  $(DEP_mips_elf)
221377298SobrienDEP_cris_multi = $(DEP_cris_aout) $(DEP_cris_elf)
221477298SobrienBMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.
221577298Sobrien#MKDEP    DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.
221689857Sobrienapp.o: app.c $(INCDIR)/symcat.h
221789857Sobrienas.o: as.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h \
221889857Sobrien  output-file.h sb.h macro.h dwarf2dbg.h
221989857Sobrienatof-generic.o: atof-generic.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h
222089857Sobrienbignum-copy.o: bignum-copy.c $(INCDIR)/symcat.h
222189857Sobriencond.o: cond.c $(INCDIR)/symcat.h macro.h sb.h $(INCDIR)/obstack.h
222289857Sobriendepend.o: depend.c $(INCDIR)/symcat.h
222389857Sobriendwarf2dbg.o: dwarf2dbg.c $(INCDIR)/symcat.h dwarf2dbg.h \
222489857Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/elf/dwarf2.h
222589857Sobrienecoff.o: ecoff.c $(INCDIR)/symcat.h ecoff.h
222689857Sobrienehopt.o: ehopt.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h \
222777298Sobrien  $(INCDIR)/elf/dwarf2.h
222889857Sobrienexpr.o: expr.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
222989857Sobrien  $(INCDIR)/obstack.h
223089857Sobrienflonum-copy.o: flonum-copy.c $(INCDIR)/symcat.h
223177298Sobrienflonum-konst.o: flonum-konst.c
223277298Sobrienflonum-mult.o: flonum-mult.c
223389857Sobrienfrags.o: frags.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h
223489857Sobrienhash.o: hash.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
223589857Sobrien  $(INCDIR)/obstack.h
223689857Sobrieninput-file.o: input-file.c $(INCDIR)/symcat.h input-file.h \
223789857Sobrien  $(INCDIR)/safe-ctype.h
223889857Sobrieninput-scrub.o: input-scrub.c $(INCDIR)/symcat.h input-file.h \
223989857Sobrien  sb.h
224089857Sobrienlisting.o: listing.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
224189857Sobrien  input-file.h subsegs.h
224289857Sobrienliteral.o: literal.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h
224389857Sobrienmacro.o: macro.c $(INCDIR)/safe-ctype.h sb.h macro.h
224489857Sobrienmessages.o: messages.c $(INCDIR)/symcat.h
224589857Sobrienoutput-file.o: output-file.c $(INCDIR)/symcat.h output-file.h
224689857Sobrienread.o: read.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
224789857Sobrien  subsegs.h $(INCDIR)/obstack.h sb.h macro.h ecoff.h
224877298Sobriensb.o: sb.c sb.h
224989857Sobrienstabs.o: stabs.c $(INCDIR)/symcat.h $(INCDIR)/obstack.h \
225089857Sobrien  subsegs.h ecoff.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
225189857Sobriensubsegs.o: subsegs.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h
225289857Sobriensymbols.o: symbols.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
225389857Sobrien  $(INCDIR)/obstack.h subsegs.h struc-symbol.h
225489857Sobrienwrite.o: write.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h \
225589857Sobrien  output-file.h dwarf2dbg.h
225689857Sobriengasp.o: gasp.c $(INCDIR)/safe-ctype.h sb.h macro.h
225789857Sobrienitbl-ops.o: itbl-ops.c itbl-ops.h $(INCDIR)/symcat.h
225889857Sobriene-crisaout.o: $(srcdir)/config/e-crisaout.c $(INCDIR)/symcat.h \
225989857Sobrien  emul-target.h
226089857Sobriene-criself.o: $(srcdir)/config/e-criself.c $(INCDIR)/symcat.h \
226189857Sobrien  emul-target.h
226289857Sobriene-i386aout.o: $(srcdir)/config/e-i386aout.c $(INCDIR)/symcat.h \
226389857Sobrien  emul-target.h
226489857Sobriene-i386coff.o: $(srcdir)/config/e-i386coff.c $(INCDIR)/symcat.h \
226589857Sobrien  emul-target.h
226689857Sobriene-i386elf.o: $(srcdir)/config/e-i386elf.c $(INCDIR)/symcat.h \
226789857Sobrien  emul-target.h
226889857Sobriene-mipsecoff.o: $(srcdir)/config/e-mipsecoff.c $(INCDIR)/symcat.h \
226989857Sobrien  emul-target.h
227089857Sobriene-mipself.o: $(srcdir)/config/e-mipself.c $(INCDIR)/symcat.h \
227189857Sobrien  emul-target.h
227238889Sjdp$(OBJS): $(DEP_@target_cpu_type@_@obj_format@)
227360484Sobrien$(TARG_CPU_O): $(DEPTC_@target_cpu_type@_@obj_format@)
227460484Sobrien$(OBJ_FORMAT_O): $(DEPOBJ_@target_cpu_type@_@obj_format@)
227577298Sobrien#MKDEP    DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.
2276