Makefile.am revision 130561
138889Sjdp## Process this file with automake to generate Makefile.in
238889Sjdp
360484Sobrien## Work around apparent automake bug.
460484SobrienINTLLIBS = @INTLLIBS@
560484Sobrien
6130561SobrienAUTOMAKE_OPTIONS = 1.8 cygnus dejagnu
738889Sjdp
860484SobrienSUBDIRS = doc po
9130561Sobrien# Automake should figure this out on its own.  It doesn't, because
10130561Sobrien# of the "cygnus" option.  But distclean still wants it.
11130561SobrienDIST_SUBDIRS = $(SUBDIRS)
1238889Sjdp
1338889Sjdptooldir = $(exec_prefix)/$(target_alias)
1438889Sjdp
1560484SobrienYACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo @YACC@ ; fi`
1660484SobrienLEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo @LEX@ ; fi`
1738889Sjdp
1877298SobrienWARN_CFLAGS = @WARN_CFLAGS@
1977298SobrienAM_CFLAGS = $(WARN_CFLAGS)
2077298Sobrien
2160484SobrienMKDEP = gcc -MM
2238889Sjdp
2338889SjdpTARG_CPU = @target_cpu_type@
2438889SjdpTARG_CPU_C = $(srcdir)/config/tc-@target_cpu_type@.c
2538889SjdpTARG_CPU_O = tc-@target_cpu_type@.o
2638889SjdpTARG_CPU_H = $(srcdir)/config/tc-@target_cpu_type@.h
2738889SjdpOBJ_FORMAT_C = $(srcdir)/config/obj-@obj_format@.c
2838889SjdpOBJ_FORMAT_O = obj-@obj_format@.o
2938889SjdpOBJ_FORMAT_H = $(srcdir)/config/obj-@obj_format@.h
3038889SjdpTARG_ENV_H = $(srcdir)/config/te-@te_file@.h
3138889SjdpATOF_TARG_C = $(srcdir)/config/atof-@atof@.c
3238889SjdpATOF_TARG_O = atof-@atof@.o
3338889Sjdp
3438889Sjdp# use @target_cpu_type@ for refering to configured target name
3538889SjdpIT_HDRS=itbl-parse.h $(srcdir)/itbl-ops.h 
3638889SjdpIT_SRCS=itbl-parse.c itbl-lex.c $(srcdir)/itbl-ops.c
3738889SjdpIT_DEPS=$(srcdir)/itbl-parse.y $(srcdir)/itbl-lex.l $(srcdir)/config/itbl-@target_cpu_type@.h
3838889SjdpIT_OBJS=itbl-parse.o itbl-lex.o itbl-ops.o
3938889Sjdp
4038889Sjdp# CPU types.  This is only used for dependency information.
4138889Sjdp
4238889SjdpCPU_TYPES = \
4338889Sjdp	a29k \
4438889Sjdp	alpha \
4538889Sjdp	arc \
4638889Sjdp	arm \
4760484Sobrien	avr \
4877298Sobrien	cris \
4938889Sjdp	d10v \
5060484Sobrien	d30v \
51104834Sobrien	dlx \
5260484Sobrien	fr30 \
53104834Sobrien	frv \
5438889Sjdp	h8300 \
5538889Sjdp	h8500 \
5638889Sjdp	hppa \
5777298Sobrien	ia64 \
5860484Sobrien	i370 \
5938889Sjdp	i386 \
6038889Sjdp	i860 \
6138889Sjdp	i960 \
62130561Sobrien	ip2k \
6338889Sjdp	m32r \
6477298Sobrien	m68hc11 \
6538889Sjdp	m68k \
6638889Sjdp	m88k \
6760484Sobrien	mcore \
6838889Sjdp	mips \
6989857Sobrien	mmix \
7038889Sjdp	mn10200 \
7138889Sjdp	mn10300 \
72130561Sobrien	msp430 \
7338889Sjdp	ns32k \
7489857Sobrien	openrisc \
7591041Sobrien	or32 \
7689857Sobrien	pdp11 \
7760484Sobrien	pj \
7838889Sjdp	ppc \
7989857Sobrien	s390 \
8038889Sjdp	sh \
81104834Sobrien	sh64 \
8238889Sjdp	sparc \
8338889Sjdp	tahoe \
8438889Sjdp	tic30 \
85130561Sobrien	tic4x \
8677298Sobrien	tic54x \
8760484Sobrien	tic80 \
8838889Sjdp	vax \
8938889Sjdp	w65 \
9038889Sjdp	v850 \
9189857Sobrien	xstormy16 \
92130561Sobrien	xtensa \
9338889Sjdp	z8k
9438889Sjdp
9538889Sjdp# Object format types.  This is only used for dependency information.
9678828Sobrien# We deliberately omit SOM, since it does not work as a cross assembler.
9738889Sjdp
9838889SjdpOBJ_FORMATS = \
9938889Sjdp	aout \
10038889Sjdp	bout \
10138889Sjdp	coff \
10238889Sjdp	ecoff \
10338889Sjdp	elf \
10438889Sjdp	evax \
10538889Sjdp	hp300 \
10638889Sjdp	ieee \
10738889Sjdp	vms
10838889Sjdp
10938889Sjdp# This is an sh case which sets valid according to whether the CPU
11038889Sjdp# type in the shell variable c and the OS type in the shell variable o
11138889Sjdp# are supported.  This helps cuts down on the amount of dependency
11238889Sjdp# information.
11338889Sjdp
11438889SjdpCPU_OBJ_VALID = \
11538889Sjdp	valid= ; \
11638889Sjdp	case $$o in \
11738889Sjdp	aout) \
11838889Sjdp	  case $$c in \
119130561Sobrien	  a29k | arm | cris | i386 | m68k | ns32k | pdp11 | sparc | tahoe | tic30 | vax) \
12038889Sjdp	    valid=yes ;; \
12138889Sjdp	  esac ;; \
12238889Sjdp	bout) \
12338889Sjdp	  case $$c in \
12438889Sjdp	  i960) valid=yes ;; \
12538889Sjdp	  esac ;; \
12677298Sobrien	coff) valid=yes; \
12777298Sobrien	  case $$c in \
128130561Sobrien	  cris | i860 | mmix | sh64) \
12977298Sobrien	    valid= ;; \
13077298Sobrien	  esac ;; \
13138889Sjdp	ecoff) \
13238889Sjdp	  case $$c in \
13338889Sjdp	  mips | alpha) valid=yes ;; \
13438889Sjdp	  esac ;; \
13538889Sjdp	elf) valid=yes ;; \
13638889Sjdp	evax) \
13738889Sjdp	  case $$c in \
13838889Sjdp	  alpha) valid=yes ;; \
13938889Sjdp	  esac ;; \
14038889Sjdp	hp300) \
14138889Sjdp	  case $$c in \
14238889Sjdp	  m68k) valid=yes ;; \
14338889Sjdp	  esac ;; \
14438889Sjdp	vms) \
14538889Sjdp	  case $$c in \
14638889Sjdp	  vax) valid=yes ;; \
14738889Sjdp	  esac ;; \
14838889Sjdp	esac;
14938889Sjdp
15060484Sobrien# These are like CPU_TYPES and CPU_OBJ_VALID, for the obj=multi case.
15138889Sjdp
15277298SobrienMULTI_CPU_TYPES = i386 mips cris
15360484Sobrien
15460484SobrienMULTI_CPU_OBJ_VALID = \
15538889Sjdp	valid= ; \
15660484Sobrien	case $$o in \
15760484Sobrien	aout) \
15860484Sobrien	  case $$c in \
15977298Sobrien	  i386 | cris) valid=yes ;; \
16060484Sobrien	  esac ;; \
16177298Sobrien	coff) \
16277298Sobrien	  case $$c in \
16377298Sobrien	  i386 | mips) valid=yes ;; \
16477298Sobrien	  esac ;; \
16560484Sobrien	ecoff) \
16660484Sobrien	  case $$c in \
16760484Sobrien	  mips) valid=yes ;; \
16860484Sobrien	  esac ;; \
16960484Sobrien	elf) valid=yes ;; \
17038889Sjdp	esac;
17138889Sjdp
17238889Sjdp# Regular source files.
17338889Sjdp
17438889SjdpGAS_CFILES = \
17538889Sjdp	app.c \
17638889Sjdp	as.c \
17738889Sjdp	atof-generic.c \
17838889Sjdp	bignum-copy.c \
17938889Sjdp	cond.c \
18038889Sjdp	depend.c \
18160484Sobrien	dwarf2dbg.c \
182130561Sobrien	dw2gencfi.c \
18338889Sjdp	ecoff.c \
18438889Sjdp	ehopt.c \
18538889Sjdp	expr.c \
18638889Sjdp	flonum-copy.c \
18738889Sjdp	flonum-konst.c \
18838889Sjdp	flonum-mult.c \
18938889Sjdp	frags.c \
19038889Sjdp	hash.c \
19138889Sjdp	input-file.c \
19238889Sjdp	input-scrub.c \
19338889Sjdp	listing.c \
19438889Sjdp	literal.c \
19538889Sjdp	macro.c \
19638889Sjdp	messages.c \
19738889Sjdp	output-file.c \
19838889Sjdp	read.c \
19938889Sjdp	sb.c \
20038889Sjdp	stabs.c \
20138889Sjdp	subsegs.c \
20238889Sjdp	symbols.c \
20338889Sjdp	write.c
20438889Sjdp
205130561SobrienCFILES = $(GAS_CFILES) itbl-ops.c
20638889Sjdp
20738889SjdpHFILES = \
20838889Sjdp	as.h \
20960484Sobrien	asintl.h \
21038889Sjdp	bignum.h \
21138889Sjdp	bit_fix.h \
21260484Sobrien	cgen.h \
21360484Sobrien	dwarf2dbg.h \
214130561Sobrien	dw2gencfi.h \
21538889Sjdp	ecoff.h \
21638889Sjdp	emul-target.h \
21738889Sjdp	emul.h \
21838889Sjdp	expr.h \
21938889Sjdp	flonum.h \
22038889Sjdp	frags.h \
22138889Sjdp	hash.h \
22238889Sjdp	input-file.h \
22338889Sjdp	itbl-ops.h \
22438889Sjdp	listing.h \
22538889Sjdp	macro.h \
22638889Sjdp	obj.h \
22738889Sjdp	output-file.h \
22838889Sjdp	read.h \
22938889Sjdp	sb.h \
23038889Sjdp	struc-symbol.h \
23138889Sjdp	subsegs.h \
23238889Sjdp	symbols.h \
23338889Sjdp	tc.h \
23438889Sjdp	write.h
23538889Sjdp
23638889Sjdp# CPU files in config.
23738889Sjdp
23838889SjdpTARGET_CPU_CFILES = \
23938889Sjdp	config/tc-a29k.c \
24038889Sjdp	config/tc-alpha.c \
24138889Sjdp	config/tc-arc.c \
24238889Sjdp	config/tc-arm.c \
24360484Sobrien	config/tc-avr.c \
24477298Sobrien	config/tc-cris.c \
24538889Sjdp	config/tc-d10v.c \
24660484Sobrien	config/tc-d30v.c \
247104834Sobrien	config/tc-dlx.c \
24860484Sobrien	config/tc-fr30.c \
249104834Sobrien	config/tc-frv.c \
25038889Sjdp	config/tc-h8300.c \
25138889Sjdp	config/tc-h8500.c \
25238889Sjdp	config/tc-hppa.c \
25377298Sobrien	config/tc-ia64.c \
25460484Sobrien	config/tc-i370.c \
25538889Sjdp	config/tc-i386.c \
25638889Sjdp	config/tc-i860.c \
25738889Sjdp	config/tc-i960.c \
258130561Sobrien	config/tc-ip2k.c \
25938889Sjdp	config/tc-m32r.c \
26077298Sobrien	config/tc-m68hc11.c \
26138889Sjdp	config/tc-m68k.c \
26238889Sjdp	config/tc-m88k.c \
26360484Sobrien	config/tc-mcore.c \
26438889Sjdp	config/tc-mips.c \
26589857Sobrien	config/tc-mmix.c \
26638889Sjdp	config/tc-mn10200.c \
26738889Sjdp	config/tc-mn10300.c \
268130561Sobrien	config/tc-msp430.c \
26938889Sjdp	config/tc-ns32k.c \
27089857Sobrien	config/tc-openrisc.c \
27191041Sobrien	config/tc-or32.c \
27289857Sobrien	config/tc-pdp11.c \
27360484Sobrien	config/tc-pj.c \
27438889Sjdp	config/tc-ppc.c \
27589857Sobrien	config/tc-s390.c \
27638889Sjdp	config/tc-sh.c \
27791041Sobrien	config/tc-sh64.c \
27838889Sjdp	config/tc-sparc.c \
27938889Sjdp	config/tc-tahoe.c \
28038889Sjdp	config/tc-tic30.c \
28177298Sobrien	config/tc-tic54x.c \
28260484Sobrien	config/tc-tic80.c \
28338889Sjdp	config/tc-vax.c \
28438889Sjdp	config/tc-w65.c \
28538889Sjdp	config/tc-v850.c \
28689857Sobrien	config/tc-xstormy16.c \
287130561Sobrien	config/tc-xtensa.c \
28838889Sjdp	config/tc-z8k.c
28938889Sjdp
29038889SjdpTARGET_CPU_HFILES = \
29138889Sjdp	config/tc-a29k.h \
29238889Sjdp	config/tc-alpha.h \
29338889Sjdp	config/tc-arc.h \
29438889Sjdp	config/tc-arm.h \
29560484Sobrien	config/tc-avr.h \
29677298Sobrien	config/tc-cris.h \
29738889Sjdp	config/tc-d10v.h \
29860484Sobrien	config/tc-d30v.h \
299104834Sobrien	config/tc-dlx.h \
30060484Sobrien	config/tc-fr30.h \
301104834Sobrien	config/tc-frv.h \
30238889Sjdp	config/tc-h8300.h \
30338889Sjdp	config/tc-h8500.h \
30438889Sjdp	config/tc-hppa.h \
30577298Sobrien	config/tc-ia64.h \
30660484Sobrien	config/tc-i370.h \
30738889Sjdp	config/tc-i386.h \
30838889Sjdp	config/tc-i860.h \
30938889Sjdp	config/tc-i960.h \
310130561Sobrien	config/tc-ip2k.h \
31138889Sjdp	config/tc-m32r.h \
31277298Sobrien	config/tc-m68hc11.h \
31338889Sjdp	config/tc-m68k.h \
31438889Sjdp	config/tc-m88k.h \
31560484Sobrien	config/tc-mcore.h \
31638889Sjdp	config/tc-mips.h \
31789857Sobrien	config/tc-mmix.h \
31838889Sjdp	config/tc-mn10200.h \
31938889Sjdp	config/tc-mn10300.h \
320130561Sobrien	config/tc-msp430.h \
32138889Sjdp	config/tc-ns32k.h \
32289857Sobrien	config/tc-openrisc.h \
32391041Sobrien	config/tc-or32.h \
32489857Sobrien	config/tc-pdp11.h \
32560484Sobrien	config/tc-pj.h \
32638889Sjdp	config/tc-ppc.h \
32789857Sobrien	config/tc-s390.h \
32838889Sjdp	config/tc-sh.h \
32991041Sobrien	config/tc-sh64.h \
33038889Sjdp	config/tc-sparc.h \
33138889Sjdp	config/tc-tahoe.h \
33238889Sjdp	config/tc-tic30.h \
33377298Sobrien	config/tc-tic54x.h \
33460484Sobrien	config/tc-tic80.h \
33538889Sjdp	config/tc-vax.h \
33638889Sjdp	config/tc-w65.h \
33738889Sjdp	config/tc-v850.h \
33889857Sobrien	config/tc-xstormy16.h \
339130561Sobrien	config/tc-xtensa.h \
34038889Sjdp	config/tc-z8k.h
34138889Sjdp
34238889Sjdp# OBJ files in config
34338889Sjdp
34438889SjdpOBJ_FORMAT_CFILES = \
34538889Sjdp	config/obj-aout.c \
34638889Sjdp	config/obj-bout.c \
34738889Sjdp	config/obj-coff.c \
34838889Sjdp	config/obj-ecoff.c \
34938889Sjdp	config/obj-elf.c \
35038889Sjdp	config/obj-evax.c \
35138889Sjdp	config/obj-hp300.c \
35238889Sjdp	config/obj-ieee.c \
35338889Sjdp	config/obj-som.c \
35438889Sjdp	config/obj-vms.c
35538889Sjdp
35638889SjdpOBJ_FORMAT_HFILES = \
35738889Sjdp	config/obj-aout.h \
35838889Sjdp	config/obj-bout.h \
35938889Sjdp	config/obj-coff.h \
36038889Sjdp	config/obj-ecoff.h \
36138889Sjdp	config/obj-elf.h \
36238889Sjdp	config/obj-evax.h \
36338889Sjdp	config/obj-hp300.h \
36438889Sjdp	config/obj-ieee.h \
36538889Sjdp	config/obj-som.h \
36638889Sjdp	config/obj-vms.h
36738889Sjdp
36838889Sjdp# Emulation header files in config
36938889Sjdp
37038889SjdpTARG_ENV_HFILES = \
37138889Sjdp	config/te-386bsd.h \
37238889Sjdp	config/te-aux.h \
37338889Sjdp	config/te-delta.h \
37438889Sjdp	config/te-delt88.h \
37538889Sjdp	config/te-dpx2.h \
37638889Sjdp	config/te-dynix.h \
37760484Sobrien	config/te-epoc-pe.h \
37838889Sjdp	config/te-generic.h \
37938889Sjdp	config/te-go32.h \
38038889Sjdp	config/te-hp300.h \
38138889Sjdp	config/te-hppa.h \
38278828Sobrien	config/te-hppa64.h \
38378828Sobrien	config/te-hppalinux64.h \
38438889Sjdp	config/te-i386aix.h \
38589857Sobrien	config/te-ia64aix.h \
38638889Sjdp	config/te-ic960.h \
38738889Sjdp	config/te-linux.h \
38838889Sjdp	config/te-lnews.h \
38938889Sjdp	config/te-lynx.h \
39038889Sjdp	config/te-mach.h \
39138889Sjdp	config/te-macos.h \
39238889Sjdp	config/te-nbsd.h \
39338889Sjdp	config/te-nbsd532.h \
39438889Sjdp	config/te-pc532mach.h \
39538889Sjdp	config/te-pe.h \
39638889Sjdp	config/te-ppcnw.h \
39738889Sjdp	config/te-psos.h \
39838889Sjdp	config/te-riscix.h \
39938889Sjdp	config/te-sparcaout.h \
40038889Sjdp	config/te-sun3.h \
40138889Sjdp	config/te-svr4.h \
40278828Sobrien	config/te-sysv32.h \
40378828Sobrien	config/te-tmips.h
40438889Sjdp
40538889Sjdp# Multi files in config
40638889Sjdp
40738889SjdpMULTI_CFILES = \
40877298Sobrien	config/e-crisaout.c \
40977298Sobrien	config/e-criself.c \
41060484Sobrien	config/e-i386aout.c \
41138889Sjdp	config/e-i386coff.c \
41238889Sjdp	config/e-i386elf.c \
41338889Sjdp	config/e-mipsecoff.c \
41438889Sjdp	config/e-mipself.c
41538889Sjdp
41638889SjdpCONFIG_OBJS = \
41738889Sjdp	$(TARG_CPU_O) \
41838889Sjdp	$(OBJ_FORMAT_O) \
41938889Sjdp	$(ATOF_TARG_O) \
42038889Sjdp	$(extra_objects)
42138889Sjdp
42238889SjdpGENERIC_OBJS = \
42338889Sjdp	app.o \
42438889Sjdp	as.o \
42538889Sjdp	atof-generic.o \
42638889Sjdp	bignum-copy.o \
42738889Sjdp	cond.o \
42838889Sjdp	depend.o \
42960484Sobrien	dwarf2dbg.o \
430130561Sobrien	dw2gencfi.o \
43138889Sjdp	ehopt.o \
43238889Sjdp	expr.o \
43338889Sjdp	flonum-konst.o \
43438889Sjdp	flonum-copy.o \
43538889Sjdp	flonum-mult.o \
43638889Sjdp	frags.o \
43738889Sjdp	hash.o \
43838889Sjdp	input-file.o \
43938889Sjdp	input-scrub.o \
44038889Sjdp	literal.o \
44138889Sjdp	messages.o \
44238889Sjdp	output-file.o \
44338889Sjdp	read.o \
44438889Sjdp	subsegs.o \
44538889Sjdp	symbols.o \
44638889Sjdp	write.o \
44738889Sjdp	listing.o \
44838889Sjdp	ecoff.o \
44938889Sjdp	stabs.o \
45038889Sjdp	sb.o \
45138889Sjdp	macro.o
45238889Sjdp
45338889SjdpOBJS = $(CONFIG_OBJS) $(GENERIC_OBJS)
45438889Sjdp
45560484SobrienPOTFILES = $(MULTI_CFILES) $(TARGET_ENV_HFILES) $(OBJ_FORMAT_HFILES) \
45660484Sobrien	$(OBJ_FORMAT_CFILES) $(TARGET_CPU_HFILES) $(TARGET_CPU_CFILES) \
45760484Sobrien	$(HFILES) $(CFILES) $(GAS_CFILES)
45860484Sobrienpo/POTFILES.in: @MAINT@ Makefile
459130561Sobrien	for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \
46060484Sobrien	  && mv tmp $(srcdir)/po/POTFILES.in
46160484Sobrien
462130561Sobrien# Note: GASP is now deprecated and has been removed.  It is still
463130561Sobrien# available in the CVS archive or older binutils releases if it is needed.
464104834Sobriennoinst_PROGRAMS = as-new
46560484Sobriennoinst_SCRIPTS = $(GDBINIT)
46660484SobrienEXTRA_SCRIPTS = .gdbinit
46738889Sjdp
46838889Sjdp$(srcdir)/make-gas.com: stamp-mk.com
46938889Sjdpstamp-mk.com: vmsconf.sh Makefile
47038889Sjdp	sh $(srcdir)/vmsconf.sh $(GENERIC_OBJS) > new-make.com
47138889Sjdp	$(SHELL) $(srcdir)/../move-if-change new-make.com $(srcdir)/make-gas.com
47238889Sjdp	touch stamp-mk.com
47338889Sjdp
47489857SobrienEXTRA_DIST = make-gas.com m68k-parse.c itbl-parse.c itbl-parse.h itbl-lex.c
47589857Sobriendiststuff: $(EXTRA_DIST) info
47638889Sjdp
47760484SobrienDISTCLEANFILES = targ-cpu.h obj-format.h targ-env.h itbl-cpu.h cgen-desc.h
47838889Sjdp
47938889Sjdp# Now figure out from those variables how to compile and link.
48038889Sjdp
48138889SjdpBASEDIR = $(srcdir)/..
48238889SjdpBFDDIR = $(BASEDIR)/bfd
48338889SjdpINCDIR = $(BASEDIR)/include
48438889Sjdp
48538889Sjdp# This is the variable actually used when we compile.
48638889Sjdp# Specify the directories to be searched for header files.
48738889Sjdp# Both . and srcdir are used, in that order,
48838889Sjdp# so that tm.h and config.h will be found in the compilation
48938889Sjdp# subdirectory rather than in the source directory.
49060484SobrienINCLUDES = -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\""
49138889Sjdp
49238889Sjdp# This should be parallel to INCLUDES, but should replace $(srcdir)
49338889Sjdp# with $${srcdir}, and should work in a subdirectory.  This is used
49438889Sjdp# when building dependencies, because the dependency building is done
49538889Sjdp# in a subdirectory.
49660484SobrienDEP_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\""
49738889Sjdp
49889857SobrienDEP_FLAGS = -DBFD_ASSEMBLER -DOBJ_MAYBE_ELF \
49989857Sobrien	-I. -I.. -I$${srcdir} -I../../bfd $(DEP_INCLUDES)
50089857Sobrien
50138889Sjdp# How to link with both our special library facilities
50238889Sjdp# and the system's installed libraries.
50338889Sjdp
50438889SjdpGASLIBS = @OPCODES_LIB@ @BFDLIB@ ../libiberty/libiberty.a
50538889Sjdp
50638889Sjdp# Files to be copied away after each stage in building.
50738889SjdpSTAGESTUFF = *.o $(noinst_PROGRAMS)
50838889Sjdp
509130561SobrienBFDVER_H = @BFDVER_H@
510130561Sobrien
51138889Sjdp$(OBJS): @ALL_OBJ_DEPS@
51238889Sjdp
51338889Sjdpas_new_SOURCES = $(GAS_CFILES)
51438889Sjdpas_new_LDADD = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
51577298Sobrien	$(extra_objects) $(GASLIBS) $(INTLLIBS) $(LIBM)
51638889Sjdpas_new_DEPENDENCIES = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
51760484Sobrien	$(extra_objects) $(GASLIBS) $(INTLDEPS)
51838889Sjdp
51938889Sjdp# Stuff that every object file depends upon.  If anything is removed
52038889Sjdp# from this list, remove it from dep-in.sed as well.
521104834Sobrien$(OBJS): $(INCDIR)/bin-bugs.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
522104834Sobrien	$(INCDIR)/progress.h $(INCDIR)/fopen-same.h \
52377298Sobrien	$(OBJ_FORMAT_H) $(TARG_CPU_H) $(TARG_ENV_H) \
52477298Sobrien	as.h asintl.h bignum.h bit_fix.h config.h emul.h expr.h flonum.h \
52577298Sobrien	frags.h hash.h listing.h obj.h read.h symbols.h tc.h write.h
52638889Sjdp
52738889SjdpEXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
52838889Sjdp          echo $${rootme}/../expect/expect ; \
52938889Sjdp          else echo expect ; fi`
53038889Sjdp
53138889SjdpRUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
53238889Sjdp		echo $${srcdir}/../dejagnu/runtest ; else echo runtest; \
53338889Sjdp	   fi`
53438889SjdpRUNTESTFLAGS=
53538889Sjdp
53638889Sjdpcheck-DEJAGNU: site.exp
53738889Sjdp	if [ -d testsuite ]; then \
53838889Sjdp	  true; \
53938889Sjdp	else \
54038889Sjdp	  mkdir testsuite; \
54138889Sjdp	fi
54238889Sjdp	rm -f testsuite/site.exp
54338889Sjdp	cp site.exp testsuite/site.exp
54438889Sjdp	rootme=`pwd`; export rootme; \
54538889Sjdp	srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
54638889Sjdp	EXPECT=${EXPECT} ; export EXPECT ; \
54738889Sjdp	if [ -f $(top_builddir)/../expect/expect ]; then \
54838889Sjdp	  TCL_LIBRARY=`cd $(top_srcdir)/../tcl/library && pwd`; \
54938889Sjdp	  export TCL_LIBRARY; \
55038889Sjdp	fi; \
55138889Sjdp	runtest=$(RUNTEST); \
55238889Sjdp	cd testsuite; \
55338889Sjdp	if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
55438889Sjdp	  $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
55538889Sjdp		$(RUNTESTFLAGS); \
55638889Sjdp	else echo "WARNING: could not find \`runtest'" 1>&2; :;\
55738889Sjdp	fi
55838889Sjdp
55938889Sjdp# The implicit .c.o rule doesn't work for these, perhaps because of
56038889Sjdp# the variables, or perhaps because the sources are not on vpath.
56177298Sobrien$(TARG_CPU_O): $(TARG_CPU_C)
56238889Sjdp	$(COMPILE) -c $(TARG_CPU_C)
56338889Sjdp$(ATOF_TARG_O): $(ATOF_TARG_C)
56438889Sjdp	$(COMPILE) -c $(ATOF_TARG_C)
56538889Sjdp
56638889Sjdp# ecoff.c only has full dependencies when ECOFF_DEBUGGING is defined,
56738889Sjdp# so the automatic dependency stuff doesn't work.
56838889Sjdpecoff.o : ecoff.c ecoff.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
56938889Sjdp	$(INCDIR)/coff/ecoff.h $(INCDIR)/coff/symconst.h \
57038889Sjdp	$(INCDIR)/aout/stab_gnu.h
57138889Sjdp
57238889Sjdp# We need all these explicit rules for the multi stuff.  Because of
57338889Sjdp# these rules, we don't need one for OBJ_FORMAT_O.
57438889Sjdp
57538889Sjdpobj-aout.o : $(srcdir)/config/obj-aout.c
57638889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-aout.c
57738889Sjdpobj-bout.o : $(srcdir)/config/obj-bout.c
57838889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-bout.c
57938889Sjdpobj-coff.o: $(srcdir)/config/obj-coff.c
58038889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-coff.c
58138889Sjdpobj-ecoff.o : $(srcdir)/config/obj-ecoff.c
58238889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-ecoff.c
58338889Sjdpobj-elf.o : $(srcdir)/config/obj-elf.c
58438889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-elf.c
58538889Sjdpobj-evax.o : $(srcdir)/config/obj-evax.c
58638889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-evax.c
58738889Sjdpobj-hp300.o : $(srcdir)/config/obj-hp300.c
58838889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-hp300.c
58938889Sjdpobj-ieee.o : $(srcdir)/config/obj-ieee.c
59038889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-ieee.c
59138889Sjdpobj-multi.o : $(srcdir)/config/obj-multi.c
59238889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-multi.c
59338889Sjdpobj-som.o : $(srcdir)/config/obj-som.c
59438889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-som.c
59538889Sjdpobj-vms.o : $(srcdir)/config/obj-vms.c
59638889Sjdp	$(COMPILE) -c $(srcdir)/config/obj-vms.c
59738889Sjdp
59838889Sjdpe-mipself.o : $(srcdir)/config/e-mipself.c
59938889Sjdp	$(COMPILE) -c $(srcdir)/config/e-mipself.c
60038889Sjdpe-mipsecoff.o : $(srcdir)/config/e-mipsecoff.c
60138889Sjdp	$(COMPILE) -c $(srcdir)/config/e-mipsecoff.c
60260484Sobriene-i386aout.o: $(srcdir)/config/e-i386aout.c
60360484Sobrien	$(COMPILE) -c $(srcdir)/config/e-i386aout.c
60438889Sjdpe-i386coff.o: $(srcdir)/config/e-i386coff.c
60538889Sjdp	$(COMPILE) -c $(srcdir)/config/e-i386coff.c
60638889Sjdpe-i386elf.o: $(srcdir)/config/e-i386elf.c
60738889Sjdp	$(COMPILE) -c $(srcdir)/config/e-i386elf.c
60877298Sobriene-crisaout.o: $(srcdir)/config/e-crisaout.c
60977298Sobrien	$(COMPILE) -c $(srcdir)/config/e-crisaout.c
61077298Sobriene-criself.o: $(srcdir)/config/e-criself.c
61177298Sobrien	$(COMPILE) -c $(srcdir)/config/e-criself.c
61238889Sjdp
613130561Sobrienxtensa-relax.o: $(srcdir)/config/xtensa-relax.c
614130561Sobrien	$(COMPILE) -c $(srcdir)/config/xtensa-relax.c
615130561Sobrien
61638889Sjdp# The m68k operand parser.
61738889Sjdp
61838889SjdpEXTRA_as_new_SOURCES = config/m68k-parse.y
61938889Sjdp
62060484Sobrien# If m68k-parse.y is in a different directory, then ylwrap will use an
62160484Sobrien# absolute path when it invokes yacc, which will cause yacc to put the
62260484Sobrien# absolute path into the generated file.  That's a pain when it comes
62360484Sobrien# to generating snapshots, because it introduces spurious diffs.
62460484Sobrien# Since when we make the snapshots $(srcdir) = ".", we check for that
62560484Sobrien# case and handle it differently.  This means that anybody who
62660484Sobrien# configures with $(srcdir) = "." will have to set their path in the
62760484Sobrien# debugger if they want to debug m68k-parse.y.  This is bad, but on
62860484Sobrien# the other hand it's good that people who use the prebuilt
62960484Sobrien# m68k-parse.c don't get a spurious absolute path.
63038889Sjdpm68k-parse.c: $(srcdir)/config/m68k-parse.y
63160484Sobrien	f=$(srcdir)/config/m68k-parse.y; \
63260484Sobrien	if [ $$f = "./config/m68k-parse.y" ]; then \
63360484Sobrien	  ln -s config/m68k-parse.y . > /dev/null 2>/dev/null || \
63460484Sobrien	   ln config/m68k-parse.y . > /dev/null 2>/dev/null || \
63560484Sobrien	   cp config/m68k-parse.y . >/dev/null 2>/dev/null; \
63660484Sobrien	  f=m68k-parse.y; \
63760484Sobrien	else true; fi; \
63860484Sobrien	$(SHELL) $(YLWRAP) "$(YACC)" $$f y.tab.c m68k-parse.c --; \
63960484Sobrien	if [ $$f = "m68k-parse.y" ]; then \
64060484Sobrien	  rm -f m68k-parse.y; \
64160484Sobrien	else true; fi
64238889Sjdpm68k-parse.o: m68k-parse.c $(srcdir)/config/m68k-parse.h
64338889Sjdp
64438889Sjdp# Don't let the .y.h rule clobber m68k-parse.h.
64538889Sjdpm68k-parse.h: ; @true
64638889Sjdp$(srcdir)/config/m68k-parse.h: ; @true
64738889Sjdp
64838889Sjdp# The instruction table specification lexical analyzer and parser.
64938889Sjdp
65038889Sjdpitbl-lex.c: $(srcdir)/itbl-lex.l
65138889Sjdpitbl-lex.o: itbl-lex.c itbl-parse.h
65238889Sjdp
65338889Sjdpitbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h
65438889Sjdp
65538889Sjdpitbl-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
65638889Sjdp
65738889Sjdpitbl-parse.c itbl-parse.h: $(srcdir)/itbl-parse.y
65838889Sjdp	$(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/itbl-parse.y y.tab.c itbl-parse.c y.tab.h itbl-parse.h -- -d
65938889Sjdp
66038889Sjdp# stand-alone itbl assembler & disassembler
66138889Sjdp
662130561SobrienEXTRA_PROGRAMS = itbl-test
66338889Sjdpitbl_test_SOURCES = itbl-parse.y itbl-lex.l
66460484Sobrienitbl_test_LDADD = itbl-tops.o itbl-test.o $(GASLIBS) @LEXLIB@
66538889Sjdp
66660484Sobrienitbl-tops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
66760484Sobrien	$(COMPILE) -o itbl-tops.o -DSTAND_ALONE -c $(srcdir)/itbl-ops.c
66838889Sjdp
66938889Sjdpitbl-test.o: $(srcdir)/testsuite/gas/all/itbl-test.c $(srcdir)/itbl-ops.h
67038889Sjdp	$(COMPILE) -c -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c
67138889Sjdp
67238889Sjdp# CGEN interface.
67338889Sjdp
67460484SobrienCGEN_CPU_PREFIX = @cgen_cpu_prefix@
67560484Sobrien
67660484Sobriencgen.o: cgen.c cgen.h cgen-desc.h subsegs.h \
67738889Sjdp	$(INCDIR)/obstack.h $(INCDIR)/opcode/cgen.h \
67860484Sobrien	$(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-desc.h \
67960484Sobrien	$(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-opc.h
68038889Sjdp
68138889Sjdp# Remake the info files.
68238889Sjdp
68338889SjdpMOSTLYCLEANFILES = $(STAGESTUFF) core stamp-mk.com \
68438889Sjdp	testsuite/*.o testsuite/*.out testsuite/gas.log testsuite/gas.sum \
68538889Sjdp	testsuite/site.exp site.bak site.exp stage stage1 stage2
68638889Sjdp
68777298SobrienCLEANFILES = dep.sed DEPTC DEPTCA DEPOBJ DEPOBJA DEP2 DEP2A DEP1 DEPA DEP DEPDIR
68838889Sjdp
68938889Sjdp.PHONY: install-exec-local install-data-local
69060484Sobrien.PHONY: install-exec-bindir install-exec-tooldir
69138889Sjdp
69260484Sobrieninstall-exec-local: install-exec-bindir @install_tooldir@
69360484Sobrien
69460484Sobrieninstall-exec-bindir: $(noinst_PROGRAMS)
695104834Sobrien	$(mkinstalldirs) $(DESTDIR)$(bindir)
69638889Sjdp	@list='$(noinst_PROGRAMS)'; for p in $$list; do \
69738889Sjdp	  if test -f $$p; then \
69860484Sobrien	    echo " $(LIBTOOL)  --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
699104834Sobrien	    $(LIBTOOL)  --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
70038889Sjdp	  else :; fi; \
70138889Sjdp	done
70260484Sobrien
70360484Sobrieninstall-exec-tooldir: install-exec-bindir $(noinst_PROGRAMS)
704104834Sobrien	$(mkinstalldirs) $(DESTDIR)$(tooldir)/bin
70538889Sjdp	n=`echo as | sed '$(transform)'`; \
70638889Sjdp	if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/as$(EXEEXT)" ]; then \
707104834Sobrien	  rm -f $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \
708104834Sobrien	  ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT) >/dev/null 2>/dev/null \
709104834Sobrien	    || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) as-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \
71060484Sobrien	else \
71160484Sobrien	  true ; \
71238889Sjdp	fi
71338889Sjdp
71438889Sjdp# These exist for maintenance purposes.
71538889Sjdp
71638889Sjdp.PHONY: bootstrap bootstrap2 bootstrap3 stage1 stage2 stage3 comparison
71738889Sjdp
71838889Sjdpbootstrap: as-new
71938889Sjdp	$(MAKE) stage1
72038889Sjdp	rm -f stage && ln -s stage1 stage
72138889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
72238889Sjdp	$(MAKE) stage2
72338889Sjdp	rm -f stage && ln -s stage2 stage
72438889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
72538889Sjdp	$(MAKE) comparison against=stage2
72638889Sjdp
72738889Sjdpbootstrap2:
72838889Sjdp	rm -f stage && ln -s stage1 stage
72938889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
73038889Sjdp	$(MAKE) stage2
73138889Sjdp	rm -f stage && ln -s stage2 stage
73238889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
73338889Sjdp	$(MAKE) comparison against=stage2
73438889Sjdp
73538889Sjdpbootstrap3:
73638889Sjdp	rm -f stage && ln -s stage2 stage
73738889Sjdp	$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
73838889Sjdp	$(MAKE) comparison against=stage2
73938889Sjdp
74038889Sjdp# Copy the object files from a particular stage into a subdirectory.
74138889Sjdpstage1:
74238889Sjdp	-mkdir stage1
74338889Sjdp	-mv $(STAGESTUFF) stage1
74438889Sjdp	if [ -f stage1/as-new$(EXEEXT) -a ! -f stage1/as$(EXEEXT) ] ; then (cd stage1 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
74538889Sjdp
74638889Sjdpstage2:
74738889Sjdp	-mkdir stage2
74838889Sjdp	-mv $(STAGESTUFF) stage2
74938889Sjdp	if [ -f stage2/as-new$(EXEEXT) -a ! -f stage2/as$(EXEEXT) ] ; then (cd stage2 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
75038889Sjdp
75138889Sjdpstage3:
75238889Sjdp	-mkdir stage3
75338889Sjdp	-mv $(STAGESTUFF) stage3
75438889Sjdp	if [ -f stage3/as-new$(EXEEXT) -a ! -f stage3/as$(EXEEXT) ] ; then (cd stage3 ; ln -s as-new as$(EXEEXT)) ; fi
75538889Sjdp
75638889Sjdpagainst=stage2
75738889Sjdp
75838889Sjdp# This rule is derived from corresponding code in the Makefile.in for gcc.
75938889Sjdp# The "tail +16c" is to bypass headers which may include timestamps or
76038889Sjdp# temporary assembly file names.
76138889Sjdpcomparison:
76238889Sjdp	x=0 ; \
76338889Sjdp	for file in *.o ; do \
76438889Sjdp	  tail +16c ./$$file > tmp-foo1; \
76538889Sjdp	  if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \
76638889Sjdp	    if cmp tmp-foo1 tmp-foo2 ; then \
76738889Sjdp	      true ; \
76838889Sjdp	    else \
76938889Sjdp	      echo $$file differs ; \
77038889Sjdp	      x=1 ; \
77138889Sjdp	    fi ; \
77238889Sjdp	  else true; fi ; \
77338889Sjdp	done ; \
77438889Sjdp	exit $$x
77538889Sjdp	-rm -f tmp-foo*
77638889Sjdp
77738889Sjdp.PHONY: de-stage1 de-stage2 de-stage3
77838889Sjdp
77938889Sjdpde-stage1:
78038889Sjdp	- (cd stage1 ; rm -f as$(EXEEXT) ; mv -f * ..)
78138889Sjdp	- rmdir stage1
78238889Sjdp
78338889Sjdpde-stage2:
78438889Sjdp	- (cd stage2 ; rm -f as$(EXEEXT) ; mv -f * ..)
78538889Sjdp	- rmdir stage2
78638889Sjdp
78738889Sjdpde-stage3:
78838889Sjdp	- (cd stage3 ; rm -f as$(EXEEXT) ; mv -f * ..)
78938889Sjdp	- rmdir stage3
79038889Sjdp
79138889SjdpDEP_FILE_DEPS =  $(CFILES) $(HFILES) $(TARGET_CPU_CFILES) \
79238889Sjdp	$(TARGET_CPU_HFILES) $(OBJ_FORMAT_CFILES) $(OBJ_FORMAT_HFILES)
79338889Sjdp
794130561SobrienCONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/configure.in
79589857Sobrien
79677298Sobrien# Automatic dependency computation.  This is a real pain, because the
79777298Sobrien# dependencies change based on target_cpu_type and obj_format.
79877298Sobrien# Just to make things even more complicated, automake separates the
79977298Sobrien# dependency variable assignments from the dependency rules, and tacks
80077298Sobrien# on a .NOEXPORT at the end of Makefile.in.
80177298Sobrien
80260484SobrienDEP: dep.sed $(DEP_FILE_DEPS) DEPTC DEPOBJ DEP2
80377298Sobrien	rm -f DEP1 # delete because we use $? in DEP1 rule
80438889Sjdp	srcdir=`cd $(srcdir); pwd`; \
80560484Sobrien	$(MAKE) MKDEP="$(MKDEP)" srcdir="$${srcdir}" VPATH="$${srcdir}" DEP1
80660484Sobrien	rm -rf DEPDIR
80777298Sobrien	echo 'AMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.' > DEPA
80860484Sobrien	sed -f dep.sed < DEPTC >> DEPA
80960484Sobrien	sed -f dep.sed < DEPOBJ >> DEPA
81060484Sobrien	sed -f dep.sed < DEP2 >> DEPA
81177298Sobrien	echo 'BMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.' >> DEPA
81277298Sobrien	echo '#MKDEP    DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.' >> DEPA
81377298Sobrien	sed -f dep.sed < DEP1 >> DEPA
81460484Sobrien	echo '$$(OBJS): $$(DEP_@target''_cpu_type@_@obj''_format@)' >> DEPA
81560484Sobrien	echo '$$(TARG_CPU_O): $$(DEPTC_@target''_cpu_type@_@obj''_format@)' >> DEPA
81660484Sobrien	echo '$$(OBJ_FORMAT_O): $$(DEPOBJ_@target''_cpu_type@_@obj''_format@)' >> DEPA
81777298Sobrien	echo '#MKDEP    DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.' >> DEPA
81877298Sobrien	if grep ' /' DEPA > /dev/null 2> /dev/null; then \
81977298Sobrien	  echo 'make DEP failed!'; exit 1; \
82077298Sobrien	else \
82177298Sobrien	  mv -f DEPA $@; \
82277298Sobrien	fi
82338889Sjdp
82460484SobrienDEP1: $(CFILES) $(MULTI_CFILES)
82560484Sobrien	if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
82638889Sjdp	srcdir=`cd $(srcdir); pwd`; \
82760484Sobrien	cd DEPDIR; \
82838889Sjdp	echo '' > targ-cpu.h; \
82938889Sjdp	echo '' > obj-format.h; \
83038889Sjdp	echo '' > targ-env.h; \
83138889Sjdp	echo '' > itbl-cpu.h; \
83260484Sobrien	echo '' > itbl-parse.h; \
83389857Sobrien	$(MKDEP) $(DEP_FLAGS) $? > DEP
83460484Sobrien	mv -f DEPDIR/DEP $@
83538889Sjdp
83638889Sjdp# Work out the special dependencies for the tc-*.c files.
83760484SobrienDEPTC: $(TARGET_CPU_CFILES)
83860484Sobrien	rm -f DEPTCA
83960484Sobrien	if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
84038889Sjdp	srcdir=`cd $(srcdir); pwd`; \
84160484Sobrien	cd DEPDIR; \
84238889Sjdp	for c in $(CPU_TYPES); do \
84338889Sjdp	  for o in $(OBJ_FORMATS); do \
84438889Sjdp	    $(CPU_OBJ_VALID) \
84538889Sjdp	    if [ x$${valid} = xyes ]; then \
84638889Sjdp	      echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
84738889Sjdp	      echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \
84838889Sjdp	      echo '#include "te-generic.h"' > targ-env.h; \
84938889Sjdp	      echo '' > itbl-cpu.h; \
85060484Sobrien	      echo '' > itbl-parse.h; \
85160484Sobrien	      echo '#include "opcodes/'"$${c}"'-desc.h"' > cgen-desc.h; \
85238889Sjdp	      rm -f dummy.c; \
85338889Sjdp	      cp $${srcdir}/config/tc-$${c}.c dummy.c; \
85489857Sobrien	      $(MKDEP) $(DEP_FLAGS) dummy.c | \
85560484Sobrien	        sed -e "s/dummy.o: dummy.c/DEPTC_$${c}_$${o} =/" >> ../DEPTCA; \
85638889Sjdp	      rm -f dummy.c; \
85738889Sjdp	    else true; fi; \
85838889Sjdp	  done; \
85938889Sjdp	done
86060484Sobrien	echo 'DEPTC_hppa_som = $$(srcdir)/config/tc-hppa.h subsegs.h \' >> DEPTCA
86160484Sobrien	echo '  $$(INCDIR)/obstack.h $$(BFDDIR)/libhppa.h \' >> DEPTCA
86260484Sobrien	echo '  $$(INCDIR)/opcode/hppa.h $$(BFDDIR)/som.h' >> DEPTCA
86360484Sobrien	for c in $(MULTI_CPU_TYPES); do \
86477298Sobrien	  echo "DEPTC_$${c}"'_multi = \' >> DEPTCA; \
86560484Sobrien	  for o in $(OBJ_FORMATS); do \
86660484Sobrien	    $(MULTI_CPU_OBJ_VALID) \
86738889Sjdp	    if [ x$${valid} = xyes ]; then \
86860484Sobrien	      echo '$$(DEPTC_'"$${c}_$${o}"') \' >> DEPTCA; \
86938889Sjdp	    else true; fi; \
87060484Sobrien	  done; \
87160484Sobrien	  echo '' >> DEPTCA; \
87238889Sjdp	done
87360484Sobrien	mv -f DEPTCA DEPTC
87438889Sjdp
87538889Sjdp# Work out the special dependencies for the obj-*.c files.
87660484SobrienDEPOBJ: $(OBJ_FORMAT_CFILES)
87760484Sobrien	rm -f DEPOBJA
87860484Sobrien	if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
87938889Sjdp	srcdir=`cd $(srcdir); pwd`; \
88060484Sobrien	cd DEPDIR; \
88138889Sjdp	for c in $(CPU_TYPES); do \
88238889Sjdp	  for o in $(OBJ_FORMATS); do \
88338889Sjdp	    $(CPU_OBJ_VALID) \
88438889Sjdp	    if [ x$${valid} = xyes ]; then \
88538889Sjdp	      echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
88638889Sjdp	      echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \
88738889Sjdp	      echo '#include "te-generic.h"' > targ-env.h; \
88838889Sjdp	      echo '' > itbl-cpu.h; \
88960484Sobrien	      echo '' > itbl-parse.h; \
89038889Sjdp	      rm -f dummy.c; \
89138889Sjdp	      cp $${srcdir}/config/obj-$${o}.c dummy.c; \
89289857Sobrien	      $(MKDEP) $(DEP_FLAGS) dummy.c | \
89360484Sobrien	        sed -e "s/dummy.o: dummy.c/DEPOBJ_$${c}_$${o} =/" >> ../DEPOBJA; \
89438889Sjdp	      rm -f dummy.c; \
89538889Sjdp	    else true; fi; \
89638889Sjdp	  done; \
89738889Sjdp	done
89860484Sobrien	echo 'DEPOBJ_hppa_som = $$(srcdir)/config/obj-som.h subsegs.h \' >> DEPOBJA
89960484Sobrien	echo '  $$(INCDIR)/obstack.h $$(BFDDIR)/libhppa.h \' >> DEPOBJA
90060484Sobrien	echo '  $$(BFDDIR)/som.h  $$(INCDIR)/aout/stab_gnu.h \' >> DEPOBJA
90160484Sobrien	echo '  $$(INCDIR)/aout/stab.def' >> DEPOBJA
90260484Sobrien	for c in $(MULTI_CPU_TYPES); do \
90377298Sobrien	  echo "DEPOBJ_$${c}"'_multi = \' >> DEPOBJA; \
90460484Sobrien	  for o in $(OBJ_FORMATS); do \
90560484Sobrien	    $(MULTI_CPU_OBJ_VALID) \
90638889Sjdp	    if [ x$${valid} = xyes ]; then \
90760484Sobrien	      echo '$$(DEPOBJ_'"$${c}_$${o}"') \' >> DEPOBJA; \
90838889Sjdp	    else true; fi; \
90960484Sobrien	  done; \
91060484Sobrien	  echo '' >> DEPOBJA; \
91138889Sjdp	done
91260484Sobrien	mv -f DEPOBJA DEPOBJ
91338889Sjdp
91438889Sjdp# Work out the dependencies for each CPU/OBJ combination.
91538889Sjdp# Note that SOM is a special case, because it only works native.
91660484SobrienDEP2: $(TARGET_CPU_HFILES) $(OBJ_FORMAT_HFILES)
91777298Sobrien	rm -f DEP2A
91860484Sobrien	if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
91938889Sjdp	srcdir=`cd $(srcdir); pwd`; \
92060484Sobrien	cd DEPDIR; \
92138889Sjdp	for c in $(CPU_TYPES); do \
92238889Sjdp	  for o in $(OBJ_FORMATS); do \
92338889Sjdp	    $(CPU_OBJ_VALID) \
92438889Sjdp	    if [ x$${valid} = xyes ]; then \
92538889Sjdp	      echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
92638889Sjdp	      echo '#include "obj-'"$${o}"'.h"' > dummy.c; \
92789857Sobrien	      $(MKDEP) $(DEP_FLAGS) dummy.c | \
92877298Sobrien	        sed -e "s/dummy.o: dummy.c/DEP_$${c}_$${o} =/" >> ../DEP2A; \
92938889Sjdp	    else true; fi; \
93038889Sjdp	  done; \
93138889Sjdp	done
93277298Sobrien	echo 'DEP_hppa_som = $$(BFDDIR)/som.h' >> DEP2A
93360484Sobrien	for c in $(MULTI_CPU_TYPES); do \
93477298Sobrien	  echo "DEP_$${c}"'_multi = \' >> DEP2A; \
93560484Sobrien	  for o in $(OBJ_FORMATS); do \
93660484Sobrien	    $(MULTI_CPU_OBJ_VALID) \
93738889Sjdp	    if [ x$${valid} = xyes ]; then \
93877298Sobrien	      echo '$$(DEP_'"$${c}_$${o}"') \' >> DEP2A; \
93938889Sjdp	    else true; fi; \
94060484Sobrien	  done; \
94177298Sobrien	  echo '' >> DEP2A; \
94238889Sjdp	done
94377298Sobrien	mv -f DEP2A DEP2
94438889Sjdp
94538889Sjdpdep.sed: dep-in.sed config.status
94638889Sjdp	srcdir=`cd $(srcdir); pwd`; \
94738889Sjdp	sed <$(srcdir)/dep-in.sed >dep.sed \
94838889Sjdp		-e "s!@INCDIR@!$${srcdir}/../include!" \
94938889Sjdp		-e "s!@BFDDIR@!$${srcdir}/../bfd!" \
95094536Sobrien		-e "s!@SRCDIR@!$${srcdir}!" \
95194536Sobrien		-e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/gas,,`'!'
95238889Sjdp
95360484Sobriendep: DEP
95477298Sobrien	sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
95577298Sobrien	  < Makefile > tmp-Makefile
95660484Sobrien	cat DEP >> tmp-Makefile
95738889Sjdp	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
95838889Sjdp
95960484Sobriendep-in: DEP
96077298Sobrien	sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
96177298Sobrien	  < $(srcdir)/Makefile.in > tmp-Makefile.in
96260484Sobrien	cat DEP >> tmp-Makefile.in
96338889Sjdp	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
96438889Sjdp
96560484Sobriendep-am: DEP
96677298Sobrien	sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
96777298Sobrien	  < $(srcdir)/Makefile.am > tmp-Makefile.am
96860484Sobrien	cat DEP >> tmp-Makefile.am
96938889Sjdp	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
97038889Sjdp
97177298Sobrien# HEED THE MKDEP WARNINGS.
97277298Sobrien# ANYTHING CHANGED OR ADDED BETWEEN THE WARNING LINES MAY GO AWAY.
97338889Sjdp.PHONY: dep dep-in dep-am
97438889Sjdp
97577298SobrienAMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.
97689857SobrienDEPTC_a29k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
97789857Sobrien  $(srcdir)/config/tc-a29k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
97889857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/a29k.h
97989857SobrienDEPTC_a29k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
98089857Sobrien  $(srcdir)/config/tc-a29k.h $(INCDIR)/coff/internal.h \
98189857Sobrien  $(INCDIR)/coff/a29k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
98289857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/a29k.h
98389857SobrienDEPTC_a29k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
98489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
98589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h \
98689857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/a29k.h
98789857SobrienDEPTC_alpha_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
98889857Sobrien  $(srcdir)/config/tc-alpha.h $(INCDIR)/coff/internal.h \
98989857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
99089857Sobrien  struc-symbol.h ecoff.h $(INCDIR)/opcode/alpha.h $(INCDIR)/safe-ctype.h \
99189857Sobrien  $(srcdir)/config/atof-vax.c
99289857SobrienDEPTC_alpha_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \
99389857Sobrien  $(srcdir)/config/tc-alpha.h ecoff.h $(INCDIR)/coff/sym.h \
99489857Sobrien  $(INCDIR)/coff/ecoff.h subsegs.h $(INCDIR)/obstack.h \
99589857Sobrien  struc-symbol.h $(INCDIR)/opcode/alpha.h $(INCDIR)/safe-ctype.h \
99689857Sobrien  $(srcdir)/config/atof-vax.c
99789857SobrienDEPTC_alpha_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
99889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
99989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h \
100077298Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h ecoff.h \
100189857Sobrien  $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h $(INCDIR)/opcode/alpha.h \
100289857Sobrien  $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \
1003130561Sobrien  dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/safe-ctype.h \
1004130561Sobrien  $(srcdir)/config/atof-vax.c
100589857SobrienDEPTC_alpha_evax = $(INCDIR)/symcat.h $(srcdir)/config/obj-evax.h \
100689857Sobrien  $(srcdir)/config/tc-alpha.h subsegs.h $(INCDIR)/obstack.h \
100789857Sobrien  struc-symbol.h ecoff.h $(INCDIR)/opcode/alpha.h $(INCDIR)/safe-ctype.h \
100838889Sjdp  $(srcdir)/config/atof-vax.c
100989857SobrienDEPTC_arc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
101089857Sobrien  $(srcdir)/config/tc-arc.h $(INCDIR)/coff/internal.h \
101189857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h struc-symbol.h \
101289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
101389857Sobrien  $(INCDIR)/opcode/arc.h $(srcdir)/../opcodes/arc-ext.h \
101489857Sobrien  $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
101589857SobrienDEPTC_arc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
101689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
101789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h \
101889857Sobrien  struc-symbol.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
101989857Sobrien  $(INCDIR)/opcode/arc.h $(srcdir)/../opcodes/arc-ext.h \
102089857Sobrien  $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
102189857SobrienDEPTC_arm_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
102289857Sobrien  $(srcdir)/config/tc-arm.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
102389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h
102489857SobrienDEPTC_arm_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
102589857Sobrien  $(srcdir)/config/tc-arm.h $(INCDIR)/coff/internal.h \
102689857Sobrien  $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
102789857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
102889857Sobrien  $(INCDIR)/obstack.h
102989857SobrienDEPTC_arm_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-arm.h \
103289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
103389857Sobrien  $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
103489857SobrienDEPTC_avr_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
103589857Sobrien  $(srcdir)/config/tc-avr.h $(INCDIR)/coff/internal.h \
103689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
103777298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/avr.h
103889857SobrienDEPTC_avr_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-avr.h \
104189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
104289857Sobrien  $(INCDIR)/opcode/avr.h
104389857SobrienDEPTC_cris_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
104489857Sobrien  $(srcdir)/config/tc-cris.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
104589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
104677298Sobrien  $(INCDIR)/opcode/cris.h dwarf2dbg.h
104789857SobrienDEPTC_cris_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
104889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
104989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h \
105089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
105189857Sobrien  $(INCDIR)/opcode/cris.h dwarf2dbg.h
105289857SobrienDEPTC_d10v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
105389857Sobrien  $(srcdir)/config/tc-d10v.h $(INCDIR)/coff/internal.h \
105489857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
105577298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/d10v.h \
105677298Sobrien  $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h
105789857SobrienDEPTC_d10v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
105889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
105989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h \
106089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
106189857Sobrien  $(INCDIR)/opcode/d10v.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h
106289857SobrienDEPTC_d30v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
106389857Sobrien  $(srcdir)/config/tc-d30v.h $(INCDIR)/coff/internal.h \
106489857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
106577298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/d30v.h
106689857SobrienDEPTC_d30v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
106789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
106889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h \
106989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
107089857Sobrien  $(INCDIR)/opcode/d30v.h
1071104834SobrienDEPTC_dlx_coff = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
1072104834Sobrien  $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-dlx.h \
1073104834Sobrien  $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1074104834Sobrien  $(INCDIR)/opcode/dlx.h
1075104834SobrienDEPTC_dlx_elf = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
1076104834Sobrien  $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1077104834Sobrien  $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1078104834Sobrien  $(srcdir)/config/tc-dlx.h $(INCDIR)/opcode/dlx.h
107989857SobrienDEPTC_fr30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
108089857Sobrien  $(srcdir)/config/tc-fr30.h $(INCDIR)/coff/internal.h \
108189857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
108289857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/fr30-desc.h \
108377298Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/fr30-opc.h \
108477298Sobrien  cgen.h
108589857SobrienDEPTC_fr30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
108689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
108789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h \
108889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
108989857Sobrien  $(srcdir)/../opcodes/fr30-desc.h $(INCDIR)/opcode/cgen.h \
109089857Sobrien  $(srcdir)/../opcodes/fr30-opc.h cgen.h
1091104834SobrienDEPTC_frv_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1092104834Sobrien  $(srcdir)/config/tc-frv.h $(INCDIR)/coff/internal.h \
1093130561Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
1094130561Sobrien  $(srcdir)/../opcodes/frv-desc.h $(INCDIR)/opcode/cgen.h \
1095130561Sobrien  $(srcdir)/../opcodes/frv-opc.h cgen.h $(BFDDIR)/libbfd.h \
1096130561Sobrien  $(INCDIR)/elf/common.h $(INCDIR)/elf/frv.h $(INCDIR)/elf/reloc-macros.h
1097104834SobrienDEPTC_frv_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1098104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1099104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-frv.h \
1100130561Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/frv-desc.h \
1101104834Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/frv-opc.h \
1102104834Sobrien  cgen.h $(BFDDIR)/libbfd.h $(INCDIR)/elf/frv.h $(INCDIR)/elf/reloc-macros.h
110389857SobrienDEPTC_h8300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
110489857Sobrien  $(srcdir)/config/tc-h8300.h $(INCDIR)/coff/internal.h \
110589857Sobrien  $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
1106130561Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h \
1107130561Sobrien  $(INCDIR)/opcode/h8300.h $(INCDIR)/safe-ctype.h
110889857SobrienDEPTC_h8300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
110989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
111089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h \
1111130561Sobrien  subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h $(INCDIR)/opcode/h8300.h \
111289857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/elf/h8.h $(INCDIR)/elf/reloc-macros.h
111389857SobrienDEPTC_h8500_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
111489857Sobrien  $(srcdir)/config/tc-h8500.h $(INCDIR)/coff/internal.h \
111589857Sobrien  $(INCDIR)/coff/h8500.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
111689857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/h8500-opc.h \
111789857Sobrien  $(INCDIR)/safe-ctype.h
111889857SobrienDEPTC_h8500_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
111989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
112089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h \
112189857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/h8500-opc.h \
112289857Sobrien  $(INCDIR)/safe-ctype.h
112389857SobrienDEPTC_hppa_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
112489857Sobrien  $(srcdir)/config/tc-hppa.h $(INCDIR)/coff/internal.h \
112589857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
112677298Sobrien  subsegs.h $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h
112789857SobrienDEPTC_hppa_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
112889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
112989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h \
113089857Sobrien  $(BFDDIR)/elf32-hppa.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \
113189857Sobrien  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
113277298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/hppa.h \
113377298Sobrien  dwarf2dbg.h
113489857SobrienDEPTC_ia64_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
113594536Sobrien  $(srcdir)/config/tc-ia64.h $(INCDIR)/opcode/ia64.h \
113694536Sobrien  $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \
113789857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
113877298Sobrien  dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h
113989857SobrienDEPTC_ia64_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-ia64.h \
114294536Sobrien  $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h \
114389857Sobrien  $(INCDIR)/safe-ctype.h dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h
114489857SobrienDEPTC_i370_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
114589857Sobrien  $(srcdir)/config/tc-i370.h $(INCDIR)/coff/internal.h \
114689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
114777298Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/opcode/i370.h
114889857SobrienDEPTC_i370_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
114989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
115089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h \
115189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1152130561Sobrien  struc-symbol.h $(INCDIR)/opcode/i370.h $(INCDIR)/elf/i370.h \
1153130561Sobrien  $(INCDIR)/elf/reloc-macros.h
115489857SobrienDEPTC_i386_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
115589857Sobrien  $(srcdir)/config/tc-i386.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
115689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1157130561Sobrien  dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/i386.h
115889857SobrienDEPTC_i386_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
115989857Sobrien  $(srcdir)/config/tc-i386.h $(INCDIR)/coff/internal.h \
116089857Sobrien  $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
116189857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
1162130561Sobrien  $(INCDIR)/obstack.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
1163130561Sobrien  $(INCDIR)/opcode/i386.h
116489857SobrienDEPTC_i386_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-i386.h \
116789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1168130561Sobrien  dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/i386.h
116989857SobrienDEPTC_i860_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
117089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
117189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h \
117289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
117389857Sobrien  $(INCDIR)/opcode/i860.h $(INCDIR)/elf/i860.h $(INCDIR)/elf/reloc-macros.h
117489857SobrienDEPTC_i960_bout = $(INCDIR)/symcat.h $(srcdir)/config/obj-bout.h \
117589857Sobrien  $(srcdir)/config/tc-i960.h $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \
117638889Sjdp  $(INCDIR)/opcode/i960.h
117789857SobrienDEPTC_i960_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
117889857Sobrien  $(srcdir)/config/tc-i960.h $(INCDIR)/coff/internal.h \
117989857Sobrien  $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
118089857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/i960.h
118189857SobrienDEPTC_i960_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
118289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
118389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h \
118489857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/i960.h
1185130561SobrienDEPTC_ip2k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1186130561Sobrien  $(srcdir)/config/tc-ip2k.h $(INCDIR)/coff/internal.h \
1187130561Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
1188130561Sobrien  $(srcdir)/../opcodes/ip2k-desc.h $(INCDIR)/opcode/cgen.h \
1189130561Sobrien  $(srcdir)/../opcodes/ip2k-opc.h cgen.h $(INCDIR)/elf/common.h \
1190130561Sobrien  $(INCDIR)/elf/ip2k.h $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/libbfd.h
1191130561SobrienDEPTC_ip2k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1192130561Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1193130561Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ip2k.h \
1194130561Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/ip2k-desc.h \
1195130561Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/ip2k-opc.h \
1196130561Sobrien  cgen.h $(INCDIR)/elf/ip2k.h $(INCDIR)/elf/reloc-macros.h \
1197130561Sobrien  $(BFDDIR)/libbfd.h
119889857SobrienDEPTC_m32r_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
119989857Sobrien  $(srcdir)/config/tc-m32r.h $(INCDIR)/coff/internal.h \
120089857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
120189857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/m32r-desc.h \
120277298Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/m32r-opc.h \
120377298Sobrien  cgen.h
120489857SobrienDEPTC_m32r_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
120589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
120689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h \
120789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
120889857Sobrien  $(srcdir)/../opcodes/m32r-desc.h $(INCDIR)/opcode/cgen.h \
120989857Sobrien  $(srcdir)/../opcodes/m32r-opc.h cgen.h
121089857SobrienDEPTC_m68hc11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
121189857Sobrien  $(srcdir)/config/tc-m68hc11.h $(INCDIR)/coff/internal.h \
121289857Sobrien  $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
121389857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
1214130561Sobrien  $(INCDIR)/obstack.h $(INCDIR)/opcode/m68hc11.h dwarf2dbg.h \
1215130561Sobrien  $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/reloc-macros.h
121689857SobrienDEPTC_m68hc11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
121789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
121889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h \
121989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1220130561Sobrien  $(INCDIR)/opcode/m68hc11.h dwarf2dbg.h $(INCDIR)/elf/m68hc11.h \
1221130561Sobrien  $(INCDIR)/elf/reloc-macros.h
122289857SobrienDEPTC_m68k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
122389857Sobrien  $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
122489857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h subsegs.h \
1225130561Sobrien  dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/m68k.h \
1226130561Sobrien  $(srcdir)/config/m68k-parse.h
122789857SobrienDEPTC_m68k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
122889857Sobrien  $(srcdir)/config/tc-m68k.h $(INCDIR)/coff/internal.h \
122989857Sobrien  $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
123089857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \
1231130561Sobrien  subsegs.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
1232130561Sobrien  $(INCDIR)/opcode/m68k.h $(srcdir)/config/m68k-parse.h
123389857SobrienDEPTC_m68k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
123489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
123589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h \
123689857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h subsegs.h \
1237130561Sobrien  dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/m68k.h \
1238130561Sobrien  $(srcdir)/config/m68k-parse.h $(INCDIR)/elf/m68k.h \
1239130561Sobrien  $(INCDIR)/elf/reloc-macros.h
124089857SobrienDEPTC_m68k_hp300 = $(INCDIR)/symcat.h $(srcdir)/config/obj-hp300.h \
124189857Sobrien  $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
124289857Sobrien  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
1243130561Sobrien  $(INCDIR)/obstack.h subsegs.h dwarf2dbg.h dw2gencfi.h \
1244130561Sobrien  $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/m68k.h $(srcdir)/config/m68k-parse.h
124589857SobrienDEPTC_m88k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
124689857Sobrien  $(srcdir)/config/tc-m88k.h $(INCDIR)/coff/internal.h \
124789857Sobrien  $(INCDIR)/coff/m88k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
124889857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
124977298Sobrien  $(INCDIR)/obstack.h $(srcdir)/config/m88k-opcode.h
125089857SobrienDEPTC_m88k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
125189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
125289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h \
125389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
125489857Sobrien  $(srcdir)/config/m88k-opcode.h
125589857SobrienDEPTC_mcore_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
125689857Sobrien  $(srcdir)/config/tc-mcore.h $(INCDIR)/coff/internal.h \
125789857Sobrien  $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
125889857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/mcore-opc.h \
125989857Sobrien  $(INCDIR)/safe-ctype.h
126089857SobrienDEPTC_mcore_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
126189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
126289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h \
126389857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/mcore-opc.h \
126489857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/elf/mcore.h $(INCDIR)/elf/reloc-macros.h
126589857SobrienDEPTC_mips_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
126689857Sobrien  $(srcdir)/config/tc-mips.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
126789857Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \
1268104834Sobrien  $(INCDIR)/opcode/mips.h itbl-ops.h dwarf2dbg.h $(srcdir)/config/obj-elf.h \
126960484Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
127077298Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
127177298Sobrien  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
127289857SobrienDEPTC_mips_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
127389857Sobrien  $(srcdir)/config/tc-mips.h $(INCDIR)/coff/internal.h \
127489857Sobrien  $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
127589857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \
1276104834Sobrien  $(INCDIR)/opcode/mips.h itbl-ops.h dwarf2dbg.h $(srcdir)/config/obj-elf.h \
127789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
127889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
127989857Sobrien  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
128089857SobrienDEPTC_mips_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \
128189857Sobrien  $(srcdir)/config/tc-mips.h ecoff.h $(INCDIR)/coff/sym.h \
128289857Sobrien  $(INCDIR)/coff/ecoff.h subsegs.h $(INCDIR)/obstack.h \
128389857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/mips.h itbl-ops.h \
1284104834Sobrien  dwarf2dbg.h $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1285104834Sobrien  $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1286104834Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h
128789857SobrienDEPTC_mips_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
128889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
128989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h \
129089857Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \
1291104834Sobrien  $(INCDIR)/opcode/mips.h itbl-ops.h dwarf2dbg.h $(INCDIR)/elf/mips.h \
129289857Sobrien  $(INCDIR)/elf/reloc-macros.h ecoff.h $(INCDIR)/coff/sym.h \
129389857Sobrien  $(INCDIR)/coff/ecoff.h
129489857SobrienDEPTC_mmix_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
129589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
129689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h \
129789857Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/elf/mmix.h \
129889857Sobrien  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/mmix.h \
129989857Sobrien  $(INCDIR)/safe-ctype.h dwarf2dbg.h
130089857SobrienDEPTC_mn10200_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
130189857Sobrien  $(srcdir)/config/tc-mn10200.h $(INCDIR)/coff/internal.h \
130289857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
130377298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10200.h
130489857SobrienDEPTC_mn10200_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
130589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
130689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h \
130789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
130889857Sobrien  $(INCDIR)/opcode/mn10200.h
130989857SobrienDEPTC_mn10300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
131089857Sobrien  $(srcdir)/config/tc-mn10300.h $(INCDIR)/coff/internal.h \
131189857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
131277298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10300.h \
131377298Sobrien  dwarf2dbg.h
131489857SobrienDEPTC_mn10300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
131589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
131689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h \
131789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
131889857Sobrien  $(INCDIR)/opcode/mn10300.h dwarf2dbg.h
1319130561SobrienDEPTC_msp430_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1320130561Sobrien  $(srcdir)/config/tc-msp430.h $(INCDIR)/coff/internal.h \
1321130561Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
1322130561Sobrien  $(INCDIR)/opcode/msp430.h $(INCDIR)/safe-ctype.h
1323130561SobrienDEPTC_msp430_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1324130561Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1325130561Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-msp430.h \
1326130561Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/msp430.h \
1327130561Sobrien  $(INCDIR)/safe-ctype.h
132889857SobrienDEPTC_ns32k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
132989857Sobrien  $(srcdir)/config/tc-ns32k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
133089857Sobrien  $(INCDIR)/opcode/ns32k.h $(INCDIR)/obstack.h
133189857SobrienDEPTC_ns32k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
133289857Sobrien  $(srcdir)/config/tc-ns32k.h $(INCDIR)/coff/internal.h \
133389857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ns32k.h \
133438889Sjdp  $(INCDIR)/obstack.h
133589857SobrienDEPTC_ns32k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
133689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
133789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h \
133877298Sobrien  $(INCDIR)/opcode/ns32k.h $(INCDIR)/obstack.h
133989857SobrienDEPTC_openrisc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
134089857Sobrien  $(srcdir)/config/tc-openrisc.h $(INCDIR)/coff/internal.h \
134189857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
134289857Sobrien  $(srcdir)/../opcodes/openrisc-desc.h $(INCDIR)/opcode/cgen.h \
134389857Sobrien  $(srcdir)/../opcodes/openrisc-opc.h cgen.h
134489857SobrienDEPTC_openrisc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
134589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
134689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h \
134789857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/openrisc-desc.h \
134889857Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/openrisc-opc.h \
134989857Sobrien  cgen.h
135091041SobrienDEPTC_or32_coff = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
135191041Sobrien  $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-or32.h \
135291041Sobrien  $(INCDIR)/coff/internal.h $(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h \
135391041Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/opcode/or32.h $(INCDIR)/elf/or32.h \
135491041Sobrien  $(INCDIR)/elf/reloc-macros.h
135591041SobrienDEPTC_or32_elf = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
135691041Sobrien  $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
135791041Sobrien  $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
135891041Sobrien  $(srcdir)/config/tc-or32.h $(INCDIR)/opcode/or32.h \
135991041Sobrien  $(INCDIR)/elf/or32.h $(INCDIR)/elf/reloc-macros.h
136089857SobrienDEPTC_pdp11_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
136189857Sobrien  $(srcdir)/config/tc-pdp11.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
136289857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pdp11.h
136389857SobrienDEPTC_pdp11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
136489857Sobrien  $(srcdir)/config/tc-pdp11.h $(INCDIR)/coff/internal.h \
136589857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
136689857Sobrien  $(INCDIR)/opcode/pdp11.h
136789857SobrienDEPTC_pdp11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
136889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
136989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h \
137089857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pdp11.h
137189857SobrienDEPTC_pj_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
137289857Sobrien  $(srcdir)/config/tc-pj.h $(INCDIR)/coff/internal.h \
137389857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
137477298Sobrien  $(INCDIR)/opcode/pj.h
137589857SobrienDEPTC_pj_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-pj.h \
137889857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pj.h
137989857SobrienDEPTC_ppc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
138089857Sobrien  $(srcdir)/config/tc-ppc.h $(INCDIR)/coff/internal.h \
138189857Sobrien  $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
138289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1383130561Sobrien  dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/ppc.h
138489857SobrienDEPTC_ppc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
138589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
138689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h \
138789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1388130561Sobrien  dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/ppc.h \
1389130561Sobrien  $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
139089857SobrienDEPTC_s390_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
139189857Sobrien  $(srcdir)/config/tc-s390.h $(INCDIR)/coff/internal.h \
139289857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
1393130561Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h \
1394130561Sobrien  dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/s390.h \
139589857Sobrien  $(INCDIR)/elf/s390.h $(INCDIR)/elf/reloc-macros.h
139689857SobrienDEPTC_s390_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
139789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
139889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h \
139989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1400130561Sobrien  struc-symbol.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
1401130561Sobrien  $(INCDIR)/opcode/s390.h $(INCDIR)/elf/s390.h $(INCDIR)/elf/reloc-macros.h
140289857SobrienDEPTC_sh_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
140389857Sobrien  $(srcdir)/config/tc-sh.h $(INCDIR)/coff/internal.h \
140489857Sobrien  $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
140589857Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/sh-opc.h \
1406130561Sobrien  $(INCDIR)/safe-ctype.h struc-symbol.h dwarf2dbg.h dw2gencfi.h
140789857SobrienDEPTC_sh_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
140889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
140989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h \
141089857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/sh-opc.h \
141189857Sobrien  $(INCDIR)/safe-ctype.h struc-symbol.h $(INCDIR)/elf/sh.h \
1412130561Sobrien  $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h dw2gencfi.h
1413104834SobrienDEPTC_sh64_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1414104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1415104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h \
1416104834Sobrien  $(srcdir)/config/tc-sh.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
1417130561Sobrien  $(BFDDIR)/elf32-sh64.h $(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/sh64-opc.h \
1418104834Sobrien  $(srcdir)/config/tc-sh.c subsegs.h $(INCDIR)/obstack.h \
1419130561Sobrien  $(srcdir)/../opcodes/sh-opc.h struc-symbol.h dwarf2dbg.h dw2gencfi.h
142089857SobrienDEPTC_sparc_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
142189857Sobrien  $(srcdir)/config/tc-sparc.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
142289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1423130561Sobrien  $(INCDIR)/opcode/sparc.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h
142489857SobrienDEPTC_sparc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
142589857Sobrien  $(srcdir)/config/tc-sparc.h $(INCDIR)/coff/internal.h \
142689857Sobrien  $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
142789857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
1428130561Sobrien  $(INCDIR)/obstack.h $(INCDIR)/opcode/sparc.h dw2gencfi.h \
1429130561Sobrien  $(INCDIR)/elf/dwarf2.h
143089857SobrienDEPTC_sparc_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-sparc.h \
143389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1434130561Sobrien  $(INCDIR)/opcode/sparc.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
1435130561Sobrien  $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \
143689857Sobrien  dwarf2dbg.h
143789857SobrienDEPTC_tahoe_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
143889857Sobrien  $(srcdir)/config/tc-tahoe.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
143989857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/tahoe.h
144089857SobrienDEPTC_tahoe_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
144189857Sobrien  $(srcdir)/config/tc-tahoe.h $(INCDIR)/coff/internal.h \
144289857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
144377298Sobrien  $(INCDIR)/obstack.h $(INCDIR)/opcode/tahoe.h
144489857SobrienDEPTC_tahoe_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
144589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
144689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h \
144789857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/tahoe.h
144889857SobrienDEPTC_tic30_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
144989857Sobrien  $(srcdir)/config/tc-tic30.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
145089857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h
145189857SobrienDEPTC_tic30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
145289857Sobrien  $(srcdir)/config/tc-tic30.h $(INCDIR)/coff/internal.h \
145389857Sobrien  $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
145489857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h
145589857SobrienDEPTC_tic30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
145689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
145789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic30.h \
145889857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h
1459130561SobrienDEPTC_tic4x_coff = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
1460130561Sobrien  $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic4x.h \
1461130561Sobrien  $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h \
1462130561Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/tic4x.h \
1463130561Sobrien  subsegs.h $(INCDIR)/obstack.h
1464130561SobrienDEPTC_tic4x_elf = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
1465130561Sobrien  $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1466130561Sobrien  $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1467130561Sobrien  $(srcdir)/config/tc-tic4x.h $(INCDIR)/opcode/tic4x.h \
1468130561Sobrien  subsegs.h $(INCDIR)/obstack.h
146989857SobrienDEPTC_tic54x_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
147089857Sobrien  $(srcdir)/config/tc-tic54x.h $(INCDIR)/coff/internal.h \
147189857Sobrien  $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \
147289857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h sb.h macro.h \
147377298Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/opcode/tic54x.h
147489857SobrienDEPTC_tic54x_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
147589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
147689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic54x.h \
147789857Sobrien  $(INCDIR)/safe-ctype.h sb.h macro.h subsegs.h $(INCDIR)/obstack.h \
147889857Sobrien  struc-symbol.h $(INCDIR)/opcode/tic54x.h $(srcdir)/config/obj-coff.h \
147977298Sobrien  $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h \
148077298Sobrien  $(BFDDIR)/libcoff.h
148189857SobrienDEPTC_tic80_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
148289857Sobrien  $(srcdir)/config/tc-tic80.h $(INCDIR)/coff/internal.h \
148389857Sobrien  $(INCDIR)/coff/tic80.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
148489857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic80.h
148589857SobrienDEPTC_tic80_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-tic80.h \
148889857Sobrien  $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic80.h
148989857SobrienDEPTC_vax_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
149089857Sobrien  $(srcdir)/config/tc-vax.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
1491104834Sobrien  $(srcdir)/config/vax-inst.h $(INCDIR)/obstack.h subsegs.h \
1492104834Sobrien  $(INCDIR)/opcode/vax.h $(INCDIR)/safe-ctype.h
149389857SobrienDEPTC_vax_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
149489857Sobrien  $(srcdir)/config/tc-vax.h $(INCDIR)/coff/internal.h \
149589857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(srcdir)/config/vax-inst.h \
1496104834Sobrien  $(INCDIR)/obstack.h subsegs.h $(INCDIR)/opcode/vax.h \
1497104834Sobrien  $(INCDIR)/safe-ctype.h
149889857SobrienDEPTC_vax_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
149989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
150089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h \
1501104834Sobrien  $(srcdir)/config/vax-inst.h $(INCDIR)/obstack.h subsegs.h \
1502104834Sobrien  $(INCDIR)/elf/vax.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/vax.h \
150389857Sobrien  $(INCDIR)/safe-ctype.h
150489857SobrienDEPTC_vax_vms = $(INCDIR)/symcat.h $(srcdir)/config/obj-vms.h \
150589857Sobrien  $(srcdir)/config/tc-vax.h $(INCDIR)/aout/stab_gnu.h \
150689857Sobrien  $(INCDIR)/aout/stab.def $(srcdir)/config/vax-inst.h \
1507104834Sobrien  $(INCDIR)/obstack.h subsegs.h $(INCDIR)/opcode/vax.h \
1508104834Sobrien  $(INCDIR)/safe-ctype.h
150989857SobrienDEPTC_w65_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
151089857Sobrien  $(srcdir)/config/tc-w65.h $(INCDIR)/coff/internal.h \
151189857Sobrien  $(INCDIR)/coff/w65.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
151277298Sobrien  $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/w65-opc.h
151389857SobrienDEPTC_w65_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
151489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
151589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h \
151689857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/w65-opc.h
151789857SobrienDEPTC_v850_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
151894536Sobrien  $(srcdir)/config/tc-v850.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h \
151994536Sobrien  $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
152094536Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
152194536Sobrien  $(INCDIR)/opcode/v850.h dwarf2dbg.h
152294536SobrienDEPTC_v850_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
152394536Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
152494536Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h \
152594536Sobrien  $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
152677298Sobrien  subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/v850.h \
152777298Sobrien  dwarf2dbg.h
152889857SobrienDEPTC_xstormy16_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
152989857Sobrien  $(srcdir)/config/tc-xstormy16.h $(INCDIR)/coff/internal.h \
153089857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
153189857Sobrien  $(srcdir)/../opcodes/xstormy16-desc.h $(INCDIR)/opcode/cgen.h \
153289857Sobrien  $(srcdir)/../opcodes/xstormy16-opc.h cgen.h
153389857SobrienDEPTC_xstormy16_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
153489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
153589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h \
153689857Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/xstormy16-desc.h \
153789857Sobrien  $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/xstormy16-opc.h \
153889857Sobrien  cgen.h
1539130561SobrienDEPTC_xtensa_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1540130561Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1541130561Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xtensa.h \
1542130561Sobrien  $(INCDIR)/xtensa-config.h sb.h $(INCDIR)/safe-ctype.h \
1543130561Sobrien  subsegs.h $(INCDIR)/obstack.h $(srcdir)/config/xtensa-relax.h \
1544130561Sobrien  $(INCDIR)/xtensa-isa.h $(srcdir)/config/xtensa-istack.h \
1545130561Sobrien  dwarf2dbg.h struc-symbol.h
154689857SobrienDEPTC_z8k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
154777298Sobrien  $(srcdir)/config/tc-z8k.h $(INCDIR)/coff/internal.h \
154889857Sobrien  $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
154989857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/z8k-opc.h
155089857SobrienDEPTC_z8k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
155160484Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
155289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h \
155389857Sobrien  $(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/z8k-opc.h
155460484SobrienDEPTC_hppa_som = $(srcdir)/config/tc-hppa.h subsegs.h \
155538889Sjdp  $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h \
155638889Sjdp  $(BFDDIR)/som.h
155760484SobrienDEPTC_i386_multi = $(DEPTC_i386_aout) $(DEPTC_i386_coff) \
155860484Sobrien  $(DEPTC_i386_elf)
155960484SobrienDEPTC_mips_multi = $(DEPTC_mips_coff) $(DEPTC_mips_ecoff) \
156060484Sobrien  $(DEPTC_mips_elf)
156177298SobrienDEPTC_cris_multi = $(DEPTC_cris_aout) $(DEPTC_cris_elf)
156289857SobrienDEPOBJ_a29k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
156389857Sobrien  $(srcdir)/config/tc-a29k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
156489857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
156589857SobrienDEPOBJ_a29k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
156689857Sobrien  $(srcdir)/config/tc-a29k.h $(INCDIR)/coff/internal.h \
156789857Sobrien  $(INCDIR)/coff/a29k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
156877298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
156989857SobrienDEPOBJ_a29k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
157089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
157189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h \
157289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1573130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
157489857SobrienDEPOBJ_alpha_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
157589857Sobrien  $(srcdir)/config/tc-alpha.h $(INCDIR)/coff/internal.h \
157689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
157789857Sobrien  subsegs.h
157889857SobrienDEPOBJ_alpha_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \
157989857Sobrien  $(srcdir)/config/tc-alpha.h ecoff.h $(INCDIR)/coff/sym.h \
158089857Sobrien  $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
158189857Sobrien  $(INCDIR)/bfdlink.h $(BFDDIR)/libecoff.h
158289857SobrienDEPOBJ_alpha_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
158389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
158489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h \
158589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1586130561Sobrien  struc-symbol.h dwarf2dbg.h ecoff.h $(INCDIR)/coff/sym.h \
1587130561Sobrien  $(INCDIR)/coff/ecoff.h $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \
158860484Sobrien  $(INCDIR)/aout/aout64.h
158989857SobrienDEPOBJ_alpha_evax = $(INCDIR)/symcat.h $(srcdir)/config/obj-evax.h \
159089857Sobrien  $(srcdir)/config/tc-alpha.h
159189857SobrienDEPOBJ_arc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
159289857Sobrien  $(srcdir)/config/tc-arc.h $(INCDIR)/coff/internal.h \
1593130561Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
1594130561Sobrien  subsegs.h
159589857SobrienDEPOBJ_arc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
159689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
159789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h \
1598130561Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1599130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
160089857SobrienDEPOBJ_arm_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
160189857Sobrien  $(srcdir)/config/tc-arm.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
160289857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
160389857SobrienDEPOBJ_arm_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
160489857Sobrien  $(srcdir)/config/tc-arm.h $(INCDIR)/coff/internal.h \
160589857Sobrien  $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
160677298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
160789857SobrienDEPOBJ_arm_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
160889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
160989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h \
161089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1611130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
161289857SobrienDEPOBJ_avr_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
161389857Sobrien  $(srcdir)/config/tc-avr.h $(INCDIR)/coff/internal.h \
161489857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
161589857Sobrien  subsegs.h
161689857SobrienDEPOBJ_avr_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
161789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
161889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-avr.h \
161989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1620130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
162189857SobrienDEPOBJ_cris_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
162289857Sobrien  $(srcdir)/config/tc-cris.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
162389857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
162489857SobrienDEPOBJ_cris_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-cris.h \
162789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1628130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
162989857SobrienDEPOBJ_d10v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
163089857Sobrien  $(srcdir)/config/tc-d10v.h $(INCDIR)/coff/internal.h \
163189857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
163289857Sobrien  subsegs.h
163389857SobrienDEPOBJ_d10v_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-d10v.h \
163689857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1637130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
163889857SobrienDEPOBJ_d30v_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
163989857Sobrien  $(srcdir)/config/tc-d30v.h $(INCDIR)/coff/internal.h \
164089857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
164189857Sobrien  subsegs.h
164289857SobrienDEPOBJ_d30v_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
164389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
164489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h \
164589857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1646130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1647104834SobrienDEPOBJ_dlx_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1648104834Sobrien  $(srcdir)/config/tc-dlx.h $(INCDIR)/coff/internal.h \
1649104834Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
1650104834Sobrien  subsegs.h
1651104834SobrienDEPOBJ_dlx_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1652104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1653104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-dlx.h \
1654104834Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1655130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
165689857SobrienDEPOBJ_fr30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
165789857Sobrien  $(srcdir)/config/tc-fr30.h $(INCDIR)/coff/internal.h \
165889857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
165989857Sobrien  subsegs.h
166089857SobrienDEPOBJ_fr30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
166189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
166289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h \
166389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1664130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1665104834SobrienDEPOBJ_frv_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1666104834Sobrien  $(srcdir)/config/tc-frv.h $(INCDIR)/coff/internal.h \
1667104834Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
1668104834Sobrien  subsegs.h
1669104834SobrienDEPOBJ_frv_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1670104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1671104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-frv.h \
1672104834Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1673130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
167489857SobrienDEPOBJ_h8300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
167589857Sobrien  $(srcdir)/config/tc-h8300.h $(INCDIR)/coff/internal.h \
167689857Sobrien  $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
167777298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
167889857SobrienDEPOBJ_h8300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
167989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
168089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h \
168189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1682130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
168389857SobrienDEPOBJ_h8500_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
168489857Sobrien  $(srcdir)/config/tc-h8500.h $(INCDIR)/coff/internal.h \
168589857Sobrien  $(INCDIR)/coff/h8500.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
168689857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
168789857SobrienDEPOBJ_h8500_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
168889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
168989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h \
169089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1691130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
169289857SobrienDEPOBJ_hppa_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
169389857Sobrien  $(srcdir)/config/tc-hppa.h $(INCDIR)/coff/internal.h \
169489857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
169589857Sobrien  subsegs.h
169689857SobrienDEPOBJ_hppa_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
169789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
169889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h \
169989857Sobrien  $(BFDDIR)/elf32-hppa.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \
170089857Sobrien  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
1701130561Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h \
1702130561Sobrien  $(INCDIR)/aout/aout64.h
170389857SobrienDEPOBJ_ia64_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1704104834Sobrien  $(srcdir)/config/tc-ia64.h $(INCDIR)/opcode/ia64.h \
1705104834Sobrien  $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \
170689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
170789857Sobrien  subsegs.h
170889857SobrienDEPOBJ_ia64_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
170989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
171089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ia64.h \
1711104834Sobrien  $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h \
171289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1713130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
171489857SobrienDEPOBJ_i370_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
171589857Sobrien  $(srcdir)/config/tc-i370.h $(INCDIR)/coff/internal.h \
171689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
171789857Sobrien  subsegs.h
171889857SobrienDEPOBJ_i370_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
171989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
172089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h \
172189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1722130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/elf/i370.h $(INCDIR)/elf/reloc-macros.h \
1723130561Sobrien  $(INCDIR)/aout/aout64.h
172489857SobrienDEPOBJ_i386_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
172589857Sobrien  $(srcdir)/config/tc-i386.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
172689857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
172789857SobrienDEPOBJ_i386_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
172889857Sobrien  $(srcdir)/config/tc-i386.h $(INCDIR)/coff/internal.h \
172989857Sobrien  $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
173077298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
173189857SobrienDEPOBJ_i386_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
173289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
173389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h \
173489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1735130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
173689857SobrienDEPOBJ_i860_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
173789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
173889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h \
173989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1740130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
174189857SobrienDEPOBJ_i960_bout = $(INCDIR)/symcat.h $(srcdir)/config/obj-bout.h \
174289857Sobrien  $(srcdir)/config/tc-i960.h $(INCDIR)/obstack.h
174389857SobrienDEPOBJ_i960_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
174489857Sobrien  $(srcdir)/config/tc-i960.h $(INCDIR)/coff/internal.h \
174589857Sobrien  $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
174677298Sobrien  $(INCDIR)/obstack.h subsegs.h
174789857SobrienDEPOBJ_i960_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
174889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
174989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h \
175089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1751130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1752130561SobrienDEPOBJ_ip2k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1753130561Sobrien  $(srcdir)/config/tc-ip2k.h $(INCDIR)/coff/internal.h \
1754130561Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
1755130561Sobrien  subsegs.h
1756130561SobrienDEPOBJ_ip2k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1757130561Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1758130561Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ip2k.h \
1759130561Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1760130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
176189857SobrienDEPOBJ_m32r_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
176289857Sobrien  $(srcdir)/config/tc-m32r.h $(INCDIR)/coff/internal.h \
176389857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
176489857Sobrien  subsegs.h
176589857SobrienDEPOBJ_m32r_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
176689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
176789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h \
176889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1769130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
177089857SobrienDEPOBJ_m68hc11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
177189857Sobrien  $(srcdir)/config/tc-m68hc11.h $(INCDIR)/coff/internal.h \
177289857Sobrien  $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
177377298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
177489857SobrienDEPOBJ_m68hc11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
177589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
177689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h \
177789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1778130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
177989857SobrienDEPOBJ_m68k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
178060484Sobrien  $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
178177298Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
178289857SobrienDEPOBJ_m68k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
178389857Sobrien  $(srcdir)/config/tc-m68k.h $(INCDIR)/coff/internal.h \
178489857Sobrien  $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
178577298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
178689857SobrienDEPOBJ_m68k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
178789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
178889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h \
178989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1790130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
179189857SobrienDEPOBJ_m68k_hp300 = $(srcdir)/config/obj-aout.c $(INCDIR)/symcat.h \
179289857Sobrien  $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
179377298Sobrien  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
179438889Sjdp  $(INCDIR)/obstack.h
179589857SobrienDEPOBJ_m88k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
179689857Sobrien  $(srcdir)/config/tc-m88k.h $(INCDIR)/coff/internal.h \
179789857Sobrien  $(INCDIR)/coff/m88k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
179877298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
179989857SobrienDEPOBJ_m88k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
180089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
180189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h \
180289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1803130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
180489857SobrienDEPOBJ_mcore_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
180589857Sobrien  $(srcdir)/config/tc-mcore.h $(INCDIR)/coff/internal.h \
180689857Sobrien  $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
180789857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
180889857SobrienDEPOBJ_mcore_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
180989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
181089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h \
181189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1812130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
181389857SobrienDEPOBJ_mips_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
181489857Sobrien  $(srcdir)/config/tc-mips.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
181589857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
181689857SobrienDEPOBJ_mips_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
181789857Sobrien  $(srcdir)/config/tc-mips.h $(INCDIR)/coff/internal.h \
181889857Sobrien  $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
181989857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
182089857SobrienDEPOBJ_mips_ecoff = $(INCDIR)/symcat.h $(srcdir)/config/obj-ecoff.h \
182189857Sobrien  $(srcdir)/config/tc-mips.h ecoff.h $(INCDIR)/coff/sym.h \
182289857Sobrien  $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
182389857Sobrien  $(INCDIR)/bfdlink.h $(BFDDIR)/libecoff.h
182489857SobrienDEPOBJ_mips_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
182589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
182689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h \
182789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1828130561Sobrien  struc-symbol.h dwarf2dbg.h ecoff.h $(INCDIR)/coff/sym.h \
1829130561Sobrien  $(INCDIR)/coff/ecoff.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
1830130561Sobrien  $(INCDIR)/aout/aout64.h
183189857SobrienDEPOBJ_mmix_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
183289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
183389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h \
183489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1835130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
183689857SobrienDEPOBJ_mn10200_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
183789857Sobrien  $(srcdir)/config/tc-mn10200.h $(INCDIR)/coff/internal.h \
183889857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
183989857Sobrien  subsegs.h
184089857SobrienDEPOBJ_mn10200_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
184189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
184289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h \
184389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1844130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
184589857SobrienDEPOBJ_mn10300_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
184689857Sobrien  $(srcdir)/config/tc-mn10300.h $(INCDIR)/coff/internal.h \
184789857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
184889857Sobrien  subsegs.h
184989857SobrienDEPOBJ_mn10300_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
185089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
185189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h \
185289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1853130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1854130561SobrienDEPOBJ_msp430_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1855130561Sobrien  $(srcdir)/config/tc-msp430.h $(INCDIR)/coff/internal.h \
1856130561Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
1857130561Sobrien  subsegs.h
1858130561SobrienDEPOBJ_msp430_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1859130561Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1860130561Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-msp430.h \
1861130561Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1862130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
186389857SobrienDEPOBJ_ns32k_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
186489857Sobrien  $(srcdir)/config/tc-ns32k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
186589857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
186689857SobrienDEPOBJ_ns32k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
186789857Sobrien  $(srcdir)/config/tc-ns32k.h $(INCDIR)/coff/internal.h \
186889857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
186989857Sobrien  subsegs.h
187089857SobrienDEPOBJ_ns32k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
187189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
187289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h \
187389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1874130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
187589857SobrienDEPOBJ_openrisc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
187689857Sobrien  $(srcdir)/config/tc-openrisc.h $(INCDIR)/coff/internal.h \
187789857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
187889857Sobrien  subsegs.h
187989857SobrienDEPOBJ_openrisc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
188089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
188189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h \
188289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1883130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
188491041SobrienDEPOBJ_or32_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
188591041Sobrien  $(srcdir)/config/tc-or32.h $(INCDIR)/coff/internal.h \
188691041Sobrien  $(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
188791041Sobrien  $(INCDIR)/obstack.h subsegs.h
188891041SobrienDEPOBJ_or32_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
188991041Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
189091041Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-or32.h \
189191041Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1892130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
189389857SobrienDEPOBJ_pdp11_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
189489857Sobrien  $(srcdir)/config/tc-pdp11.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
189589857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
189689857SobrienDEPOBJ_pdp11_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
189789857Sobrien  $(srcdir)/config/tc-pdp11.h $(INCDIR)/coff/internal.h \
189889857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
189989857Sobrien  subsegs.h
190089857SobrienDEPOBJ_pdp11_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
190189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
190289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h \
190389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1904130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
190589857SobrienDEPOBJ_pj_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
190689857Sobrien  $(srcdir)/config/tc-pj.h $(INCDIR)/coff/internal.h \
190789857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
190889857Sobrien  subsegs.h
190989857SobrienDEPOBJ_pj_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
191089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
191189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h \
191289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1913130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
191489857SobrienDEPOBJ_ppc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
191589857Sobrien  $(srcdir)/config/tc-ppc.h $(INCDIR)/coff/internal.h \
191689857Sobrien  $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
191777298Sobrien  $(INCDIR)/obstack.h subsegs.h
191889857SobrienDEPOBJ_ppc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
191989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
192089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h \
192189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1922130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h \
1923104834Sobrien  $(INCDIR)/aout/aout64.h
192489857SobrienDEPOBJ_s390_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
192589857Sobrien  $(srcdir)/config/tc-s390.h $(INCDIR)/coff/internal.h \
192689857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
192789857Sobrien  subsegs.h
192889857SobrienDEPOBJ_s390_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
192989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
193089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h \
193189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1932130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
193389857SobrienDEPOBJ_sh_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
193489857Sobrien  $(srcdir)/config/tc-sh.h $(INCDIR)/coff/internal.h \
193589857Sobrien  $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
193677298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
193789857SobrienDEPOBJ_sh_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
193889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
193989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h \
194089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1941130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1942104834SobrienDEPOBJ_sh64_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1943104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1944104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h \
1945104834Sobrien  $(srcdir)/config/tc-sh.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
1946130561Sobrien  $(BFDDIR)/elf32-sh64.h $(INCDIR)/safe-ctype.h subsegs.h \
1947130561Sobrien  $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
194889857SobrienDEPOBJ_sparc_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
194989857Sobrien  $(srcdir)/config/tc-sparc.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
195089857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
195189857SobrienDEPOBJ_sparc_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
195289857Sobrien  $(srcdir)/config/tc-sparc.h $(INCDIR)/coff/internal.h \
195389857Sobrien  $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
195477298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
195589857SobrienDEPOBJ_sparc_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
195689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
195789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h \
195889857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1959130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
196089857SobrienDEPOBJ_tahoe_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
196189857Sobrien  $(srcdir)/config/tc-tahoe.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
196289857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
196389857SobrienDEPOBJ_tahoe_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
196489857Sobrien  $(srcdir)/config/tc-tahoe.h $(INCDIR)/coff/internal.h \
196589857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
196689857Sobrien  subsegs.h
196789857SobrienDEPOBJ_tahoe_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
196889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
196989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h \
197089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1971130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
197289857SobrienDEPOBJ_tic30_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
197389857Sobrien  $(srcdir)/config/tc-tic30.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
197489857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
197589857SobrienDEPOBJ_tic30_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
197689857Sobrien  $(srcdir)/config/tc-tic30.h $(INCDIR)/coff/internal.h \
197789857Sobrien  $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
197877298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
197989857SobrienDEPOBJ_tic30_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
198089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
198189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic30.h \
198289857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1983130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1984130561SobrienDEPOBJ_tic4x_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
1985130561Sobrien  $(srcdir)/config/tc-tic4x.h $(INCDIR)/coff/internal.h \
1986130561Sobrien  $(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \
1987130561Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
1988130561SobrienDEPOBJ_tic4x_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
1989130561Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1990130561Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic4x.h \
1991130561Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1992130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
199389857SobrienDEPOBJ_tic54x_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
199489857Sobrien  $(srcdir)/config/tc-tic54x.h $(INCDIR)/coff/internal.h \
199589857Sobrien  $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \
199677298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
199789857SobrienDEPOBJ_tic54x_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
199889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
199989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic54x.h \
200089857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
2001130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
200289857SobrienDEPOBJ_tic80_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
200389857Sobrien  $(srcdir)/config/tc-tic80.h $(INCDIR)/coff/internal.h \
200489857Sobrien  $(INCDIR)/coff/tic80.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
200589857Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
200689857SobrienDEPOBJ_tic80_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.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-tic80.h \
200989857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
2010130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
201189857SobrienDEPOBJ_vax_aout = $(INCDIR)/symcat.h $(srcdir)/config/obj-aout.h \
201289857Sobrien  $(srcdir)/config/tc-vax.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
201389857Sobrien  $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
201489857SobrienDEPOBJ_vax_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
201589857Sobrien  $(srcdir)/config/tc-vax.h $(INCDIR)/coff/internal.h \
201677298Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
201760484Sobrien  subsegs.h
201889857SobrienDEPOBJ_vax_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
201989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
202089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h \
202189857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
2022130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
202389857SobrienDEPOBJ_vax_vms = $(INCDIR)/symcat.h $(srcdir)/config/obj-vms.h \
202489857Sobrien  $(srcdir)/config/tc-vax.h $(INCDIR)/aout/stab_gnu.h \
202589857Sobrien  $(INCDIR)/aout/stab.def $(INCDIR)/safe-ctype.h subsegs.h \
202677298Sobrien  $(INCDIR)/obstack.h
202789857SobrienDEPOBJ_w65_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
202889857Sobrien  $(srcdir)/config/tc-w65.h $(INCDIR)/coff/internal.h \
202989857Sobrien  $(INCDIR)/coff/w65.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
203077298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
203189857SobrienDEPOBJ_w65_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
203289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
203389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h \
203489857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
2035130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
203689857SobrienDEPOBJ_v850_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
2037104834Sobrien  $(srcdir)/config/tc-v850.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h \
2038104834Sobrien  $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
2039104834Sobrien  $(INCDIR)/obstack.h subsegs.h
204089857SobrienDEPOBJ_v850_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
204189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
204289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h \
2043104834Sobrien  $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
2044130561Sobrien  subsegs.h $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h \
2045130561Sobrien  $(INCDIR)/aout/aout64.h
204689857SobrienDEPOBJ_xstormy16_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
204789857Sobrien  $(srcdir)/config/tc-xstormy16.h $(INCDIR)/coff/internal.h \
204889857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
204989857Sobrien  subsegs.h
205089857SobrienDEPOBJ_xstormy16_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
205189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
205289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h \
205389857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
2054130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
2055130561SobrienDEPOBJ_xtensa_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
2056130561Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2057130561Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xtensa.h \
2058130561Sobrien  $(INCDIR)/xtensa-config.h $(INCDIR)/safe-ctype.h subsegs.h \
2059130561Sobrien  $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
206089857SobrienDEPOBJ_z8k_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \
206189857Sobrien  $(srcdir)/config/tc-z8k.h $(INCDIR)/coff/internal.h \
206289857Sobrien  $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
206377298Sobrien  $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h
206489857SobrienDEPOBJ_z8k_elf = $(INCDIR)/symcat.h $(srcdir)/config/obj-elf.h \
206589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
206689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h \
206789857Sobrien  $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
2068130561Sobrien  struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
206960484SobrienDEPOBJ_hppa_som = $(srcdir)/config/obj-som.h subsegs.h \
207038889Sjdp  $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(BFDDIR)/som.h \
207138889Sjdp  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
207260484SobrienDEPOBJ_i386_multi = $(DEPOBJ_i386_aout) $(DEPOBJ_i386_coff) \
207360484Sobrien  $(DEPOBJ_i386_elf)
207460484SobrienDEPOBJ_mips_multi = $(DEPOBJ_mips_coff) $(DEPOBJ_mips_ecoff) \
207560484Sobrien  $(DEPOBJ_mips_elf)
207677298SobrienDEPOBJ_cris_multi = $(DEPOBJ_cris_aout) $(DEPOBJ_cris_elf)
207738889SjdpDEP_a29k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-a29k.h \
207838889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
207938889SjdpDEP_a29k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-a29k.h \
208089857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/a29k.h \
208189857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
208289857SobrienDEP_a29k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
208389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
208489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h
208589857SobrienDEP_alpha_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-alpha.h \
208689857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
208738889Sjdp  $(INCDIR)/bfdlink.h
208838889SjdpDEP_alpha_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-alpha.h \
208938889Sjdp  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
209089857SobrienDEP_alpha_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
209189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
209289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h
209338889SjdpDEP_alpha_evax = $(srcdir)/config/obj-evax.h $(srcdir)/config/tc-alpha.h
209438889SjdpDEP_arc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arc.h \
209589857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
209689857Sobrien  $(INCDIR)/bfdlink.h
209789857SobrienDEP_arc_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-arc.h
210038889SjdpDEP_arm_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-arm.h \
210138889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
210238889SjdpDEP_arm_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arm.h \
210389857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/arm.h \
210489857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
210589857SobrienDEP_arm_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
210689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
210789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h
210889857SobrienDEP_avr_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-avr.h \
210989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
211038889Sjdp  $(INCDIR)/bfdlink.h
211189857SobrienDEP_avr_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-avr.h
211477298SobrienDEP_cris_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-cris.h \
211577298Sobrien  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
211689857SobrienDEP_cris_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
211789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
211889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h
211938889SjdpDEP_d10v_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-d10v.h \
212089857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
212189857Sobrien  $(INCDIR)/bfdlink.h
212289857SobrienDEP_d10v_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
212389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
212489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h
212560484SobrienDEP_d30v_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-d30v.h \
212689857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
212789857Sobrien  $(INCDIR)/bfdlink.h
212889857SobrienDEP_d30v_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
212989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
213089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h
2131104834SobrienDEP_dlx_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-dlx.h \
2132104834Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
2133104834Sobrien  $(INCDIR)/bfdlink.h
2134104834SobrienDEP_dlx_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2135104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2136104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-dlx.h
213760484SobrienDEP_fr30_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-fr30.h \
213889857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
213989857Sobrien  $(INCDIR)/bfdlink.h
214089857SobrienDEP_fr30_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
214189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
214289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h
2143104834SobrienDEP_frv_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-frv.h \
2144104834Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
2145104834Sobrien  $(INCDIR)/bfdlink.h
2146104834SobrienDEP_frv_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2147104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2148104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-frv.h
214938889SjdpDEP_h8300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8300.h \
215089857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8300.h \
215189857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
215289857SobrienDEP_h8300_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
215389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
215489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h
215538889SjdpDEP_h8500_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8500.h \
215689857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8500.h \
215789857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
215889857SobrienDEP_h8500_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
215989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
216089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8500.h
216189857SobrienDEP_hppa_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-hppa.h \
216289857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
216338889Sjdp  $(INCDIR)/bfdlink.h
216489857SobrienDEP_hppa_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
216589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
216689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h \
216789857Sobrien  $(BFDDIR)/elf32-hppa.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \
216889857Sobrien  $(INCDIR)/elf/reloc-macros.h
216977298SobrienDEP_ia64_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ia64.h \
2170104834Sobrien  $(INCDIR)/opcode/ia64.h $(INCDIR)/symcat.h $(INCDIR)/elf/ia64.h \
2171104834Sobrien  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \
2172104834Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
217389857SobrienDEP_ia64_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
217489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2175104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ia64.h \
2176104834Sobrien  $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h
217760484SobrienDEP_i370_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i370.h \
217889857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
217989857Sobrien  $(INCDIR)/bfdlink.h
218089857SobrienDEP_i370_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
218189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
218289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h
218338889SjdpDEP_i386_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i386.h \
218438889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
218538889SjdpDEP_i386_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i386.h \
218689857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h \
218789857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
218889857SobrienDEP_i386_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
218989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
219089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h
219189857SobrienDEP_i860_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
219289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
219389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h
219438889SjdpDEP_i960_bout = $(srcdir)/config/obj-bout.h $(srcdir)/config/tc-i960.h
219538889SjdpDEP_i960_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i960.h \
219689857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/i960.h \
219789857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
219889857SobrienDEP_i960_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
219989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
220089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h
2201130561SobrienDEP_ip2k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ip2k.h \
2202130561Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
2203130561Sobrien  $(INCDIR)/bfdlink.h
2204130561SobrienDEP_ip2k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2205130561Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2206130561Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ip2k.h
220789857SobrienDEP_m32r_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m32r.h \
220889857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
220938889Sjdp  $(INCDIR)/bfdlink.h
221089857SobrienDEP_m32r_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
221189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
221289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h
221377298SobrienDEP_m68hc11_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68hc11.h \
221489857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h \
221589857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
221689857SobrienDEP_m68hc11_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
221789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
221889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h
221938889SjdpDEP_m68k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
222038889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
222138889SjdpDEP_m68k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68k.h \
222289857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h \
222389857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
222489857SobrienDEP_m68k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
222589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
222689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h
222738889SjdpDEP_m68k_hp300 = $(srcdir)/config/obj-hp300.h $(srcdir)/config/obj-aout.h \
222838889Sjdp  $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
222938889SjdpDEP_m88k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m88k.h \
223089857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/m88k.h \
223189857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
223289857SobrienDEP_m88k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
223389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
223489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-m88k.h
223560484SobrienDEP_mcore_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mcore.h \
223689857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/mcore.h \
223789857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
223889857SobrienDEP_mcore_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
223989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
224089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h
224138889SjdpDEP_mips_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-mips.h \
224238889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
224338889SjdpDEP_mips_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mips.h \
224489857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/mipspe.h \
224589857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
224638889SjdpDEP_mips_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-mips.h \
224738889Sjdp  ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
224889857SobrienDEP_mips_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
224989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
225089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h
225189857SobrienDEP_mmix_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
225289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
225389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h
225438889SjdpDEP_mn10200_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10200.h \
225589857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
225689857Sobrien  $(INCDIR)/bfdlink.h
225789857SobrienDEP_mn10200_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
225889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
225989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h
226038889SjdpDEP_mn10300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mn10300.h \
226189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
226289857Sobrien  $(INCDIR)/bfdlink.h
226389857SobrienDEP_mn10300_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
226489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
226589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h
2266130561SobrienDEP_msp430_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-msp430.h \
2267130561Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
2268130561Sobrien  $(INCDIR)/bfdlink.h
2269130561SobrienDEP_msp430_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2270130561Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2271130561Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-msp430.h
227238889SjdpDEP_ns32k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-ns32k.h \
227338889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
227438889SjdpDEP_ns32k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ns32k.h \
227589857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
227689857Sobrien  $(INCDIR)/bfdlink.h
227789857SobrienDEP_ns32k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
227889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
227989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ns32k.h
228089857SobrienDEP_openrisc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-openrisc.h \
228189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
228289857Sobrien  $(INCDIR)/bfdlink.h
228389857SobrienDEP_openrisc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
228489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
228589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h
228691041SobrienDEP_or32_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-or32.h \
228791041Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/or32.h \
228891041Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
228991041SobrienDEP_or32_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
229091041Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
229191041Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-or32.h
229289857SobrienDEP_pdp11_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-pdp11.h \
229389857Sobrien  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
229489857SobrienDEP_pdp11_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-pdp11.h \
229589857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
229689857Sobrien  $(INCDIR)/bfdlink.h
229789857SobrienDEP_pdp11_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
229889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
229989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h
230060484SobrienDEP_pj_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-pj.h \
230189857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
230289857Sobrien  $(INCDIR)/bfdlink.h
230389857SobrienDEP_pj_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
230489857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
230589857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h
230638889SjdpDEP_ppc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ppc.h \
230789857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6000.h \
230889857Sobrien  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
230989857SobrienDEP_ppc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
231089857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
231189857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h
231289857SobrienDEP_s390_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-s390.h \
231389857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
231438889Sjdp  $(INCDIR)/bfdlink.h
231589857SobrienDEP_s390_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
231689857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
231789857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h
231838889SjdpDEP_sh_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sh.h \
231989857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sh.h \
232089857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
232189857SobrienDEP_sh_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
232289857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
232389857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h
2324104834SobrienDEP_sh64_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2325104834Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2326104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h \
2327130561Sobrien  $(srcdir)/config/tc-sh.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
2328130561Sobrien  $(BFDDIR)/elf32-sh64.h
232938889SjdpDEP_sparc_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-sparc.h \
233038889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
233138889SjdpDEP_sparc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sparc.h \
233289857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sparc.h \
233389857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
233489857SobrienDEP_sparc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
233589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
233689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h
233738889SjdpDEP_tahoe_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tahoe.h \
233838889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
233938889SjdpDEP_tahoe_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tahoe.h \
234089857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
234189857Sobrien  $(INCDIR)/bfdlink.h
234289857SobrienDEP_tahoe_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
234389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
234489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tahoe.h
234538889SjdpDEP_tic30_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tic30.h \
234638889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
234738889SjdpDEP_tic30_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic30.h \
234889857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic30.h \
234989857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
235089857SobrienDEP_tic30_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
235189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
235289857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic30.h
2353130561SobrienDEP_tic4x_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic4x.h \
2354130561Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic4x.h \
2355130561Sobrien  $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
2356130561SobrienDEP_tic4x_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2357130561Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2358130561Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic4x.h
235977298SobrienDEP_tic54x_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic54x.h \
236089857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic54x.h \
236189857Sobrien  $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
236289857SobrienDEP_tic54x_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
236389857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
236489857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic54x.h
236560484SobrienDEP_tic80_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic80.h \
236689857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic80.h \
236789857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
236889857SobrienDEP_tic80_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
236989857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
237089857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-tic80.h
237138889SjdpDEP_vax_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-vax.h \
237238889Sjdp  $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
237338889SjdpDEP_vax_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-vax.h \
237489857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
237589857Sobrien  $(INCDIR)/bfdlink.h
237689857SobrienDEP_vax_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
237789857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
237889857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h
237938889SjdpDEP_vax_vms = $(srcdir)/config/obj-vms.h $(srcdir)/config/tc-vax.h \
238038889Sjdp  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
238138889SjdpDEP_w65_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-w65.h \
238289857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/w65.h \
238389857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
238489857SobrienDEP_w65_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
238589857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
238689857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-w65.h
238789857SobrienDEP_v850_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-v850.h \
2388104834Sobrien  $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/symcat.h \
2389104834Sobrien  $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
239089857SobrienDEP_v850_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
239189857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2392104834Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h \
2393104834Sobrien  $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h
239489857SobrienDEP_xstormy16_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-xstormy16.h \
239589857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
239689857Sobrien  $(INCDIR)/bfdlink.h
239789857SobrienDEP_xstormy16_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
239889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
239989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h
2400130561SobrienDEP_xtensa_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2401130561Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2402130561Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-xtensa.h \
2403130561Sobrien  $(INCDIR)/xtensa-config.h
240438889SjdpDEP_z8k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-z8k.h \
240589857Sobrien  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/z8k.h \
240689857Sobrien  $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
240789857SobrienDEP_z8k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
240889857Sobrien  $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
240989857Sobrien  $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-z8k.h
241038889SjdpDEP_hppa_som = $(BFDDIR)/som.h
241160484SobrienDEP_i386_multi = $(DEP_i386_aout) $(DEP_i386_coff) \
241260484Sobrien  $(DEP_i386_elf)
241338889SjdpDEP_mips_multi = $(DEP_mips_coff) $(DEP_mips_ecoff) \
241438889Sjdp  $(DEP_mips_elf)
241577298SobrienDEP_cris_multi = $(DEP_cris_aout) $(DEP_cris_elf)
241677298SobrienBMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.
241777298Sobrien#MKDEP    DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.
241889857Sobrienapp.o: app.c $(INCDIR)/symcat.h
241989857Sobrienas.o: as.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h \
2420130561Sobrien  output-file.h sb.h macro.h dwarf2dbg.h dw2gencfi.h \
2421130561Sobrien  $(INCDIR)/elf/dwarf2.h $(BFDVER_H)
242289857Sobrienatof-generic.o: atof-generic.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h
242389857Sobrienbignum-copy.o: bignum-copy.c $(INCDIR)/symcat.h
242489857Sobriencond.o: cond.c $(INCDIR)/symcat.h macro.h sb.h $(INCDIR)/obstack.h
242589857Sobriendepend.o: depend.c $(INCDIR)/symcat.h
242689857Sobriendwarf2dbg.o: dwarf2dbg.c $(INCDIR)/symcat.h dwarf2dbg.h \
2427130561Sobrien  $(INCDIR)/filenames.h subsegs.h $(INCDIR)/obstack.h \
2428130561Sobrien  $(INCDIR)/elf/dwarf2.h
2429130561Sobriendw2gencfi.o: dw2gencfi.c $(INCDIR)/symcat.h dw2gencfi.h \
2430130561Sobrien  $(INCDIR)/elf/dwarf2.h
243189857Sobrienecoff.o: ecoff.c $(INCDIR)/symcat.h ecoff.h
243289857Sobrienehopt.o: ehopt.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h \
243377298Sobrien  $(INCDIR)/elf/dwarf2.h
243489857Sobrienexpr.o: expr.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
243589857Sobrien  $(INCDIR)/obstack.h
243689857Sobrienflonum-copy.o: flonum-copy.c $(INCDIR)/symcat.h
243777298Sobrienflonum-konst.o: flonum-konst.c
243877298Sobrienflonum-mult.o: flonum-mult.c
243989857Sobrienfrags.o: frags.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h
244089857Sobrienhash.o: hash.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
244189857Sobrien  $(INCDIR)/obstack.h
244289857Sobrieninput-file.o: input-file.c $(INCDIR)/symcat.h input-file.h \
244389857Sobrien  $(INCDIR)/safe-ctype.h
244489857Sobrieninput-scrub.o: input-scrub.c $(INCDIR)/symcat.h input-file.h \
244589857Sobrien  sb.h
244694536Sobrienlisting.o: listing.c $(INCDIR)/symcat.h $(INCDIR)/obstack.h \
244794536Sobrien  $(INCDIR)/safe-ctype.h input-file.h subsegs.h
244889857Sobrienliteral.o: literal.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h
244989857Sobrienmacro.o: macro.c $(INCDIR)/safe-ctype.h sb.h macro.h
245089857Sobrienmessages.o: messages.c $(INCDIR)/symcat.h
245189857Sobrienoutput-file.o: output-file.c $(INCDIR)/symcat.h output-file.h
245289857Sobrienread.o: read.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
2453130561Sobrien  subsegs.h $(INCDIR)/obstack.h sb.h macro.h ecoff.h \
2454130561Sobrien  dw2gencfi.h $(INCDIR)/elf/dwarf2.h
245577298Sobriensb.o: sb.c sb.h
245689857Sobrienstabs.o: stabs.c $(INCDIR)/symcat.h $(INCDIR)/obstack.h \
245789857Sobrien  subsegs.h ecoff.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
245889857Sobriensubsegs.o: subsegs.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h
245989857Sobriensymbols.o: symbols.c $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
246089857Sobrien  $(INCDIR)/obstack.h subsegs.h struc-symbol.h
246189857Sobrienwrite.o: write.c $(INCDIR)/symcat.h subsegs.h $(INCDIR)/obstack.h \
246289857Sobrien  output-file.h dwarf2dbg.h
246389857Sobrienitbl-ops.o: itbl-ops.c itbl-ops.h $(INCDIR)/symcat.h
246489857Sobriene-crisaout.o: $(srcdir)/config/e-crisaout.c $(INCDIR)/symcat.h \
246589857Sobrien  emul-target.h
246689857Sobriene-criself.o: $(srcdir)/config/e-criself.c $(INCDIR)/symcat.h \
246789857Sobrien  emul-target.h
246889857Sobriene-i386aout.o: $(srcdir)/config/e-i386aout.c $(INCDIR)/symcat.h \
246989857Sobrien  emul-target.h
247089857Sobriene-i386coff.o: $(srcdir)/config/e-i386coff.c $(INCDIR)/symcat.h \
247189857Sobrien  emul-target.h
247289857Sobriene-i386elf.o: $(srcdir)/config/e-i386elf.c $(INCDIR)/symcat.h \
247389857Sobrien  emul-target.h
247489857Sobriene-mipsecoff.o: $(srcdir)/config/e-mipsecoff.c $(INCDIR)/symcat.h \
247589857Sobrien  emul-target.h
247689857Sobriene-mipself.o: $(srcdir)/config/e-mipself.c $(INCDIR)/symcat.h \
247789857Sobrien  emul-target.h
247838889Sjdp$(OBJS): $(DEP_@target_cpu_type@_@obj_format@)
247960484Sobrien$(TARG_CPU_O): $(DEPTC_@target_cpu_type@_@obj_format@)
248060484Sobrien$(OBJ_FORMAT_O): $(DEPOBJ_@target_cpu_type@_@obj_format@)
248177298Sobrien#MKDEP    DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.
2482