2002-01-31 Michael Snyder <msnyder@redhat.com>
[deliverable/binutils-gdb.git] / opcodes / Makefile.am
CommitLineData
252b5132
RH
1## Process this file with automake to generate Makefile.in
2
3AUTOMAKE_OPTIONS = cygnus
4
5SUBDIRS = po
6
7INCDIR = $(srcdir)/../include
8BFDDIR = $(srcdir)/../bfd
41b49281 9MKDEP = gcc -MM
252b5132 10
a2d91340
AC
11WARN_CFLAGS = @WARN_CFLAGS@
12AM_CFLAGS = $(WARN_CFLAGS)
13
252b5132
RH
14lib_LTLIBRARIES = libopcodes.la
15
16# This is where bfd.h lives.
17BFD_H = ../bfd/bfd.h
18
6c298591
NC
19# This is where libiberty lives.
20LIBIBERTY = ../libiberty/libiberty.a
21
252b5132
RH
22# Header files.
23HFILES = \
24 arm-opc.h \
25 fr30-desc.h fr30-opc.h \
26 h8500-opc.h \
27 m32r-desc.h m32r-opc.h \
28 mcore-opc.h \
87e6d782 29 openrisc-desc.h openrisc-opc.h \
252b5132
RH
30 sh-opc.h \
31 sysdep.h \
800eeca4
JW
32 ia64-asmtab.h \
33 ia64-opc.h \
252b5132 34 w65-opc.h \
93fbbb04 35 xstormy16-desc.h xstormy16-opc.h \
252b5132
RH
36 z8k-opc.h
37
38# C source files that correspond to .o's.
39CFILES = \
40 a29k-dis.c \
41 alpha-dis.c \
42 alpha-opc.c \
71f22174
AS
43 arc-dis.c \
44 arc-opc.c \
0d2bcfaf 45 arc-ext.c \
252b5132 46 arm-dis.c \
832ddf62 47 avr-dis.c \
252b5132
RH
48 cgen-asm.c \
49 cgen-dis.c \
50 cgen-opc.c \
6c95a37f
HPN
51 cris-dis.c \
52 cris-opc.c \
252b5132
RH
53 d10v-dis.c \
54 d10v-opc.c \
55 d30v-dis.c \
56 d30v-opc.c \
57 dis-buf.c \
58 disassemble.c \
59 fr30-asm.c \
60 fr30-desc.c \
61 fr30-dis.c \
62 fr30-ibld.c \
63 fr30-opc.c \
64 h8300-dis.c \
65 h8500-dis.c \
66 hppa-dis.c \
5b93d8bb
AM
67 i370-dis.c \
68 i370-opc.c \
252b5132 69 i386-dis.c \
915ef37f 70 i860-dis.c \
252b5132 71 i960-dis.c \
800eeca4
JW
72 ia64-dis.c \
73 ia64-opc-a.c \
74 ia64-opc-b.c \
75 ia64-opc-f.c \
76 ia64-opc-i.c \
77 ia64-opc-m.c \
78 ia64-opc-d.c \
79 ia64-opc.c \
80 ia64-gen.c \
81 ia64-asmtab.c \
252b5132
RH
82 m32r-asm.c \
83 m32r-desc.c \
84 m32r-dis.c \
85 m32r-ibld.c \
86 m32r-opc.c \
87 m32r-opinst.c \
60bcf0fa
NC
88 m68hc11-dis.c \
89 m68hc11-opc.c \
252b5132
RH
90 m68k-dis.c \
91 m68k-opc.c \
92 m88k-dis.c \
93 mcore-dis.c \
94 mips-dis.c \
95 mips-opc.c \
96 mips16-opc.c \
97 m10200-dis.c \
98 m10200-opc.c \
99 m10300-dis.c \
100 m10300-opc.c \
3c3bdf30
NC
101 mmix-dis.c \
102 mmix-opc.c \
252b5132 103 ns32k-dis.c \
87e6d782
NC
104 openrisc-asm.c \
105 openrisc-desc.c \
106 openrisc-dis.c \
107 openrisc-ibld.c \
108 openrisc-opc.c \
3b16e843
NC
109 or32-dis.c \
110 or32-opc.c \
e135f41b
NC
111 pdp11-dis.c \
112 pdp11-opc.c \
1e608f98
ILT
113 pj-dis.c \
114 pj-opc.c \
252b5132
RH
115 ppc-dis.c \
116 ppc-opc.c \
b6849f55 117 s390-mkopc.c \
a85d7ed0
NC
118 s390-opc.c \
119 s390-dis.c \
252b5132
RH
120 sh-dis.c \
121 sparc-dis.c \
122 sparc-opc.c \
123 tic30-dis.c \
5c84d377
TW
124 tic54x-dis.c \
125 tic54x-opc.c \
252b5132
RH
126 tic80-dis.c \
127 tic80-opc.c \
71f22174
AS
128 v850-dis.c \
129 v850-opc.c \
252b5132
RH
130 vax-dis.c \
131 w65-dis.c \
93fbbb04
GK
132 xstormy16-asm.c \
133 xstormy16-desc.c \
134 xstormy16-dis.c \
135 xstormy16-ibld.c \
136 xstormy16-opc.c \
252b5132
RH
137 z8k-dis.c \
138 z8kgen.c
139
140ALL_MACHINES = \
141 a29k-dis.lo \
142 alpha-dis.lo \
143 alpha-opc.lo \
144 arc-dis.lo \
145 arc-opc.lo \
0d2bcfaf 146 arc-ext.lo \
252b5132 147 arm-dis.lo \
832ddf62 148 avr-dis.lo \
252b5132
RH
149 cgen-asm.lo \
150 cgen-dis.lo \
151 cgen-opc.lo \
6c95a37f
HPN
152 cris-dis.lo \
153 cris-opc.lo \
252b5132
RH
154 d10v-dis.lo \
155 d10v-opc.lo \
156 d30v-dis.lo \
157 d30v-opc.lo \
158 fr30-asm.lo \
159 fr30-desc.lo \
160 fr30-dis.lo \
161 fr30-ibld.lo \
162 fr30-opc.lo \
163 h8300-dis.lo \
164 h8500-dis.lo \
165 hppa-dis.lo \
166 i386-dis.lo \
5b93d8bb
AM
167 i370-dis.lo \
168 i370-opc.lo \
915ef37f 169 i860-dis.lo \
252b5132 170 i960-dis.lo \
800eeca4
JW
171 ia64-dis.lo \
172 ia64-opc.lo \
252b5132
RH
173 m32r-asm.lo \
174 m32r-desc.lo \
175 m32r-dis.lo \
176 m32r-ibld.lo \
177 m32r-opc.lo \
178 m32r-opinst.lo \
60bcf0fa
NC
179 m68hc11-dis.lo \
180 m68hc11-opc.lo \
252b5132
RH
181 m68k-dis.lo \
182 m68k-opc.lo \
183 m88k-dis.lo \
184 m10200-dis.lo \
185 m10200-opc.lo \
186 m10300-dis.lo \
187 m10300-opc.lo \
188 mcore-dis.lo \
189 mips-dis.lo \
190 mips-opc.lo \
191 mips16-opc.lo \
3c3bdf30
NC
192 mmix-dis.lo \
193 mmix-opc.lo \
e135f41b 194 ns32k-dis.lo \
87e6d782
NC
195 openrisc-asm.lo \
196 openrisc-desc.lo \
197 openrisc-dis.lo \
198 openrisc-ibld.lo \
199 openrisc-opc.lo \
3b16e843
NC
200 or32-dis.lo \
201 or32-opc.lo \
e135f41b
NC
202 pdp11-dis.lo \
203 pdp11-opc.lo \
1e608f98
ILT
204 pj-dis.lo \
205 pj-opc.lo \
252b5132
RH
206 ppc-dis.lo \
207 ppc-opc.lo \
a85d7ed0
NC
208 s390-dis.lo \
209 s390-opc.lo \
252b5132
RH
210 sh-dis.lo \
211 sparc-dis.lo \
212 sparc-opc.lo \
213 tic30-dis.lo \
5c84d377
TW
214 tic54x-dis.lo \
215 tic54x-opc.lo \
252b5132
RH
216 tic80-dis.lo \
217 tic80-opc.lo \
218 v850-dis.lo \
219 v850-opc.lo \
220 vax-dis.lo \
221 w65-dis.lo \
93fbbb04
GK
222 xstormy16-asm.lo \
223 xstormy16-desc.lo \
224 xstormy16-dis.lo \
225 xstormy16-ibld.lo \
226 xstormy16-opc.lo \
252b5132
RH
227 z8k-dis.lo
228
229OFILES = @BFD_MACHINES@
230
231INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(INCDIR) -I$(BFDDIR) @HDEFINES@ -I$(srcdir)/../intl -I../intl
232
233disassemble.lo: disassemble.c $(INCDIR)/dis-asm.h
234 $(LIBTOOL) --mode=compile $(COMPILE) -c @archdefs@ $(srcdir)/disassemble.c
235
236libopcodes_la_SOURCES = dis-buf.c disassemble.c
237libopcodes_la_DEPENDENCIES = $(OFILES)
238libopcodes_la_LIBADD = $(OFILES) @WIN32LIBADD@
239libopcodes_la_LDFLAGS = -release $(VERSION) @WIN32LDFLAGS@
240
241# libtool will build .libs/libopcodes.a. We create libopcodes.a in
242# the build directory so that we don't have to convert all the
243# programs that use libopcodes.a simultaneously. This is a hack which
244# should be removed if everything else starts using libtool. FIXME.
245
246noinst_LIBRARIES = libopcodes.a
247
248stamp-lib: libopcodes.la
e56f75e9
ILT
249 libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
250 if [ -f $$libtooldir/libopcodes.a ]; then \
251 cp $$libtooldir/libopcodes.a libopcodes.tmp; \
847ee773 252 $(RANLIB) libopcodes.tmp; \
252b5132
RH
253 $(SHELL) $(srcdir)/../move-if-change libopcodes.tmp libopcodes.a; \
254 else true; fi
255 touch stamp-lib
256
257libopcodes.a: stamp-lib ; @true
258
259POTFILES = $(HFILES) $(CFILES)
260po/POTFILES.in: @MAINT@ Makefile
261 for file in $(POTFILES); do echo $$file; done | sort > tmp \
262 && mv tmp $(srcdir)/po/POTFILES.in
263
264# We should reconfigure whenever bfd/configure.in changes, because
265# that's where the version number comes from.
266config.status: $(srcdir)/configure $(srcdir)/../bfd/configure.in
267 $(SHELL) ./config.status --recheck
268
269CLEANFILES = \
87e6d782 270 stamp-m32r stamp-fr30 stamp-openrisc \
93fbbb04 271 stamp-xstormy16 \
0bdaf48b 272 libopcodes.a stamp-lib dep.sed DEP DEPA DEP1 DEP2
252b5132
RH
273
274
6e31aea3 275CGENDIR = @cgendir@
4a3264e6 276CPUDIR = $(CGENDIR)/cpu
6e31aea3
BE
277CGEN = `if test -f ../guile/libguile/guile ; then echo ../guile/libguile/guile; else echo guile ; fi`
278CGENFLAGS = -v
279
280CGENDEPS = ../cgen/stamp-cgen \
281 $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm \
282 $(CGENDIR)/opcodes.scm $(CGENDIR)/opc-asmdis.scm \
283 $(CGENDIR)/opc-ibld.scm $(CGENDIR)/opc-itab.scm \
284 $(CGENDIR)/opc-opinst.scm \
285 cgen-asm.in cgen-dis.in cgen-ibld.in
286
287if CGEN_MAINT
288M32R_DEPS = stamp-m32r
289FR30_DEPS = stamp-fr30
87e6d782 290OPENRISC_DEPS = stamp-openrisc
93fbbb04 291XSTORMY16_DEPS = stamp-xstormy16
6e31aea3
BE
292else
293M32R_DEPS =
294FR30_DEPS =
87e6d782 295OPENRISC_DEPS =
93fbbb04 296XSTORMY16_DEPS =
6e31aea3
BE
297endif
298
299run-cgen:
300 $(SHELL) $(srcdir)/cgen.sh opcodes $(srcdir) $(CGEN) \
301 $(CGENDIR) "$(CGENFLAGS)" $(arch) $(prefix) \
302 "$(options)" $(extrafiles)
303 touch stamp-${prefix}
304.PHONY: run-cgen
305
306# For now, require developers to configure with --enable-cgen-maint.
307$(srcdir)/m32r-desc.h $(srcdir)/m32r-desc.c $(srcdir)/m32r-opc.h $(srcdir)/m32r-opc.c $(srcdir)/m32r-ibld.c $(srcdir)/m32r-opinst.c $(srcdir)/m32r-asm.c $(srcdir)/m32r-dis.c: $(M32R_DEPS)
dc62a253 308 @true
4a3264e6 309stamp-m32r: $(CGENDEPS) $(CPUDIR)/m32r.cpu $(CPUDIR)/m32r.opc
6e31aea3
BE
310 $(MAKE) run-cgen arch=m32r prefix=m32r options=opinst extrafiles=opinst
311
312$(srcdir)/fr30-desc.h $(srcdir)/fr30-desc.c $(srcdir)/fr30-opc.h $(srcdir)/fr30-opc.c $(srcdir)/fr30-ibld.c $(srcdir)/fr30-asm.c $(srcdir)/fr30-dis.c: $(FR30_DEPS)
313 @true
4a3264e6 314stamp-fr30: $(CGENDEPS) $(CPUDIR)/fr30.cpu $(CPUDIR)/fr30.opc
6e31aea3
BE
315 $(MAKE) run-cgen arch=fr30 prefix=fr30 options= extrafiles=
316
87e6d782
NC
317$(srcdir)/openrisc-desc.h $(srcdir)/openrisc-desc.c $(srcdir)/openrisc-opc.h $(srcdir)/openrisc-opc.c $(srcdir)/openrisc-ibld.c $(srcdir)/openrisc-asm.c $(srcdir)/openrisc-dis.c: $(OPENRISC_DEPS)
318 @true
4a3264e6 319stamp-openrisc: $(CGENDEPS) $(CPUDIR)/openrisc.cpu $(CPUDIR)/openrisc.opc
87e6d782
NC
320 $(MAKE) run-cgen arch=openrisc prefix=openrisc options= extrafiles=
321
93fbbb04
GK
322$(srcdir)/xstormy16-desc.h $(srcdir)/xstormy16-desc.c $(srcdir)/xstormy16-opc.h $(srcdir)/xstormy16-opc.c $(srcdir)/xstormy16-ibld.c $(srcdir)/xstormy16-asm.c $(srcdir)/xstormy16-dis.c: $(XSTORMY16_DEPS)
323 @true
324stamp-xstormy16: $(CGENDEPS) $(CPUDIR)/xstormy16.cpu $(CPUDIR)/xstormy16.opc
325 $(MAKE) run-cgen arch=xstormy16 prefix=xstormy16 options= extrafiles=
326
800eeca4
JW
327ia64-gen: ia64-gen.o
328 $(LINK) ia64-gen.o $(LIBIBERTY)
329
330ia64-gen.o: ia64-gen.c ia64-opc.c ia64-opc-a.c ia64-opc-b.c ia64-opc-f.c \
331 ia64-opc-i.c ia64-opc-m.c ia64-opc-d.c ia64-opc.h
332
333ia64-asmtab.c: @MAINT@ ia64-gen ia64-ic.tbl ia64-raw.tbl ia64-waw.tbl ia64-war.tbl
b34fb0b4 334 here=`pwd`; cd $(srcdir); $$here/ia64-gen > ia64-asmtab.c
252b5132 335
b6849f55
NC
336s390-mkopc: s390-mkopc.c
337 $(CC_FOR_BUILD) -o s390-mkopc $(srcdir)/s390-mkopc.c
338
339s390-opc.tab: s390-mkopc s390-opc.txt
340 ./s390-mkopc < $(srcdir)/s390-opc.txt > s390-opc.tab
341
7997656a
AM
342Makefile: $(BFDDIR)/configure.in
343
252b5132
RH
344# This dependency stuff is copied from BFD.
345
73c418f4
ILT
346DEP: dep.sed $(CFILES) $(HFILES) config.h
347 rm -f DEP1
41b49281 348 $(MAKE) MKDEP="$(MKDEP)" DEP1
0bdaf48b
AM
349 sed -f dep.sed < DEP1 > DEPA
350 echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
351 if grep ' /' DEPA > /dev/null 2> /dev/null; then \
1581f8c9
AM
352 echo 'make DEP failed!'; exit 1; \
353 else \
0bdaf48b 354 mv -f DEPA $@; \
1581f8c9 355 fi
252b5132 356
73c418f4 357DEP1: $(CFILES)
73c418f4 358 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
41b49281
AM
359 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
360 $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
361 mv -f DEP2 $@
252b5132
RH
362
363dep.sed: dep-in.sed config.status
364 sed <$(srcdir)/dep-in.sed >dep.sed \
365 -e 's!@BFD_H@!$(BFD_H)!' \
366 -e 's!@INCDIR@!$(INCDIR)!' \
367 -e 's!@BFDDIR@!$(BFDDIR)!' \
368 -e 's!@SRCDIR@!$(srcdir)!'
369
73c418f4 370dep: DEP
252b5132 371 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
73c418f4 372 cat DEP >> tmp-Makefile
252b5132
RH
373 $(srcdir)/../move-if-change tmp-Makefile Makefile
374
73c418f4 375dep-in: DEP
252b5132 376 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
73c418f4 377 cat DEP >> tmp-Makefile.in
252b5132
RH
378 $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
379
73c418f4 380dep-am: DEP
252b5132 381 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
73c418f4 382 cat DEP >> tmp-Makefile.am
252b5132
RH
383 $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
384
385.PHONY: dep dep-in dep-am
386
387# What appears below is generated by a hacked mkdep using gcc -MM.
388
389# DO NOT DELETE THIS LINE -- mkdep uses it.
390# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
0d8dfecf 391a29k-dis.lo: a29k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 392 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/a29k.h
0d8dfecf 393alpha-dis.lo: alpha-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 394 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/alpha.h
0d8dfecf 395alpha-opc.lo: alpha-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a
AM
396 $(INCDIR)/opcode/alpha.h $(BFD_H) $(INCDIR)/symcat.h \
397 opintl.h
27b7e12d 398arc-dis.lo: arc-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
7997656a
AM
399 $(INCDIR)/symcat.h $(INCDIR)/opcode/arc.h $(BFDDIR)/elf-bfd.h \
400 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
401 $(INCDIR)/bfdlink.h $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h \
402 opintl.h arc-dis.h arc-ext.h
8737c3ea
HPN
403arc-opc.lo: arc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
404 $(INCDIR)/opcode/arc.h
405arc-ext.lo: arc-ext.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 406 $(BFD_H) $(INCDIR)/symcat.h arc-ext.h $(INCDIR)/libiberty.h
0d8dfecf 407arm-dis.lo: arm-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a
AM
408 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h arm-opc.h \
409 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
410 opintl.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
411 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/arm.h \
412 $(INCDIR)/elf/reloc-macros.h
0d8dfecf 413avr-dis.lo: avr-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a
AM
414 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \
415 $(INCDIR)/opcode/avr.h
0d8dfecf 416cgen-asm.lo: cgen-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
8737c3ea
HPN
417 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h $(BFD_H) \
418 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h opintl.h
0d8dfecf
AM
419cgen-dis.lo: cgen-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
420 $(INCDIR)/libiberty.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h
421cgen-opc.lo: cgen-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
8737c3ea
HPN
422 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h $(BFD_H) \
423 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h
6c95a37f 424cris-dis.lo: cris-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
7997656a
AM
425 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
426 $(INCDIR)/opcode/cris.h $(INCDIR)/libiberty.h
6c95a37f 427cris-opc.lo: cris-opc.c $(INCDIR)/opcode/cris.h
0d8dfecf 428d10v-dis.lo: d10v-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a
AM
429 $(INCDIR)/opcode/d10v.h $(INCDIR)/dis-asm.h $(BFD_H) \
430 $(INCDIR)/symcat.h
0d8dfecf
AM
431d10v-opc.lo: d10v-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
432 $(INCDIR)/opcode/d10v.h
433d30v-dis.lo: d30v-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
434 $(INCDIR)/opcode/d30v.h $(INCDIR)/dis-asm.h $(BFD_H) \
7997656a 435 $(INCDIR)/symcat.h opintl.h
0d8dfecf
AM
436d30v-opc.lo: d30v-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
437 $(INCDIR)/opcode/d30v.h
438dis-buf.lo: dis-buf.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 439 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h
0d8dfecf 440disassemble.lo: disassemble.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 441 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
0d8dfecf 442fr30-asm.lo: fr30-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
c0ef99a7
AM
443 $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen.h \
444 fr30-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
445 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
0d8dfecf 446fr30-desc.lo: fr30-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
252b5132 447 $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen.h \
27b7e12d 448 fr30-opc.h opintl.h $(INCDIR)/libiberty.h
0d8dfecf
AM
449fr30-dis.lo: fr30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
450 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h \
451 $(INCDIR)/opcode/cgen.h fr30-opc.h opintl.h
452fr30-ibld.lo: fr30-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
453 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h \
c0ef99a7 454 $(INCDIR)/opcode/cgen.h fr30-opc.h opintl.h $(INCDIR)/safe-ctype.h
0d8dfecf
AM
455fr30-opc.lo: fr30-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
456 $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen.h \
27b7e12d 457 fr30-opc.h $(INCDIR)/libiberty.h
0d8dfecf
AM
458h8300-dis.lo: h8300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
459 $(INCDIR)/opcode/h8300.h $(INCDIR)/dis-asm.h $(BFD_H) \
7997656a 460 $(INCDIR)/symcat.h opintl.h
0d8dfecf 461h8500-dis.lo: h8500-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a
AM
462 h8500-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
463 opintl.h
0d8dfecf 464hppa-dis.lo: hppa-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a
AM
465 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(BFDDIR)/libhppa.h \
466 $(INCDIR)/opcode/hppa.h
0d8dfecf 467i370-dis.lo: i370-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 468 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/i370.h
0d8dfecf
AM
469i370-opc.lo: i370-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
470 $(INCDIR)/opcode/i370.h
252b5132 471i386-dis.lo: i386-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
7997656a
AM
472 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
473 opintl.h
915ef37f 474i860-dis.lo: i860-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
7997656a 475 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/i860.h
0d8dfecf 476i960-dis.lo: i960-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 477 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
2114f57b 478ia64-dis.lo: ia64-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
7997656a 479 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/ia64.h
2114f57b
AM
480ia64-opc-a.lo: ia64-opc-a.c ia64-opc.h $(INCDIR)/opcode/ia64.h
481ia64-opc-b.lo: ia64-opc-b.c ia64-opc.h $(INCDIR)/opcode/ia64.h
482ia64-opc-f.lo: ia64-opc-f.c ia64-opc.h $(INCDIR)/opcode/ia64.h
483ia64-opc-i.lo: ia64-opc-i.c ia64-opc.h $(INCDIR)/opcode/ia64.h
484ia64-opc-m.lo: ia64-opc-m.c ia64-opc.h $(INCDIR)/opcode/ia64.h
485ia64-opc-d.lo: ia64-opc-d.c
486ia64-opc.lo: ia64-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
487 sysdep.h config.h ia64-asmtab.h $(INCDIR)/opcode/ia64.h \
488 ia64-asmtab.c
489ia64-gen.lo: ia64-gen.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
8737c3ea
HPN
490 $(INCDIR)/safe-ctype.h sysdep.h config.h ia64-opc.h \
491 $(INCDIR)/opcode/ia64.h ia64-opc-a.c ia64-opc-i.c ia64-opc-m.c \
492 ia64-opc-b.c ia64-opc-f.c ia64-opc-x.c ia64-opc-d.c
2114f57b 493ia64-asmtab.lo: ia64-asmtab.c
0d8dfecf 494m32r-asm.lo: m32r-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
c0ef99a7
AM
495 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen.h \
496 m32r-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
497 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
0d8dfecf 498m32r-desc.lo: m32r-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
252b5132 499 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen.h \
27b7e12d 500 m32r-opc.h opintl.h $(INCDIR)/libiberty.h
0d8dfecf
AM
501m32r-dis.lo: m32r-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
502 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h \
503 $(INCDIR)/opcode/cgen.h m32r-opc.h opintl.h
504m32r-ibld.lo: m32r-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
505 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h \
c0ef99a7 506 $(INCDIR)/opcode/cgen.h m32r-opc.h opintl.h $(INCDIR)/safe-ctype.h
0d8dfecf
AM
507m32r-opc.lo: m32r-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
508 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen.h \
27b7e12d 509 m32r-opc.h $(INCDIR)/libiberty.h
0d8dfecf
AM
510m32r-opinst.lo: m32r-opinst.c sysdep.h config.h $(INCDIR)/ansidecl.h \
511 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen.h \
252b5132 512 m32r-opc.h
bbeb2e03 513m68hc11-dis.lo: m68hc11-dis.c $(INCDIR)/ansidecl.h \
7997656a
AM
514 $(INCDIR)/opcode/m68hc11.h $(INCDIR)/dis-asm.h $(BFD_H) \
515 $(INCDIR)/symcat.h
bbeb2e03 516m68hc11-opc.lo: m68hc11-opc.c $(INCDIR)/ansidecl.h \
60bcf0fa 517 $(INCDIR)/opcode/m68hc11.h
0d8dfecf 518m68k-dis.lo: m68k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 519 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/floatformat.h \
0d8dfecf
AM
520 opintl.h $(INCDIR)/opcode/m68k.h
521m68k-opc.lo: m68k-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
252b5132 522 $(INCDIR)/opcode/m68k.h
0d8dfecf 523m88k-dis.lo: m88k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 524 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/m88k.h \
0d8dfecf
AM
525 opintl.h
526mcore-dis.lo: mcore-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 527 mcore-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
0d8dfecf 528mips-dis.lo: mips-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 529 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/mips.h \
0d8dfecf
AM
530 opintl.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
531 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
532 $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h
533mips-opc.lo: mips-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
534 $(INCDIR)/opcode/mips.h
535mips16-opc.lo: mips16-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
536 $(INCDIR)/opcode/mips.h
537m10200-dis.lo: m10200-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
538 $(INCDIR)/opcode/mn10200.h $(INCDIR)/dis-asm.h $(BFD_H) \
7997656a 539 $(INCDIR)/symcat.h opintl.h
0d8dfecf
AM
540m10200-opc.lo: m10200-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
541 $(INCDIR)/opcode/mn10200.h
542m10300-dis.lo: m10300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
543 $(INCDIR)/opcode/mn10300.h $(INCDIR)/dis-asm.h $(BFD_H) \
7997656a 544 $(INCDIR)/symcat.h opintl.h
0d8dfecf
AM
545m10300-opc.lo: m10300-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
546 $(INCDIR)/opcode/mn10300.h
3c3bdf30 547mmix-dis.lo: mmix-dis.c $(INCDIR)/opcode/mmix.h $(INCDIR)/dis-asm.h \
c0ef99a7 548 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
3c3bdf30
NC
549 opintl.h
550mmix-opc.lo: mmix-opc.c $(INCDIR)/opcode/mmix.h $(INCDIR)/symcat.h
252b5132 551ns32k-dis.lo: ns32k-dis.c $(BFD_H) $(INCDIR)/ansidecl.h \
7997656a
AM
552 $(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/dis-asm.h \
553 $(INCDIR)/opcode/ns32k.h opintl.h
87e6d782 554openrisc-asm.lo: openrisc-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
c0ef99a7
AM
555 $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h $(INCDIR)/opcode/cgen.h \
556 openrisc-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
557 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
8a5cc6be
AM
558openrisc-desc.lo: openrisc-desc.c sysdep.h config.h \
559 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h \
560 $(INCDIR)/opcode/cgen.h openrisc-opc.h opintl.h $(INCDIR)/libiberty.h
87e6d782
NC
561openrisc-dis.lo: openrisc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
562 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h \
563 $(INCDIR)/opcode/cgen.h openrisc-opc.h opintl.h
8a5cc6be
AM
564openrisc-ibld.lo: openrisc-ibld.c sysdep.h config.h \
565 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
566 openrisc-desc.h $(INCDIR)/opcode/cgen.h openrisc-opc.h \
c0ef99a7 567 opintl.h $(INCDIR)/safe-ctype.h
87e6d782
NC
568openrisc-opc.lo: openrisc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
569 $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h $(INCDIR)/opcode/cgen.h \
570 openrisc-opc.h $(INCDIR)/libiberty.h
8737c3ea 571pdp11-dis.lo: pdp11-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 572 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/pdp11.h
e135f41b 573pdp11-opc.lo: pdp11-opc.c $(INCDIR)/opcode/pdp11.h
0d8dfecf 574pj-dis.lo: pj-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a
AM
575 $(INCDIR)/opcode/pj.h $(INCDIR)/dis-asm.h $(BFD_H) \
576 $(INCDIR)/symcat.h
0d8dfecf
AM
577pj-opc.lo: pj-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
578 $(INCDIR)/opcode/pj.h
579ppc-dis.lo: ppc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 580 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/ppc.h
0d8dfecf
AM
581ppc-opc.lo: ppc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
582 $(INCDIR)/opcode/ppc.h opintl.h
8737c3ea
HPN
583s390-mkopc.lo: s390-mkopc.c
584s390-opc.lo: s390-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/s390.h \
585 s390-opc.tab
27b7e12d 586s390-dis.lo: s390-dis.c $(INCDIR)/ansidecl.h sysdep.h \
7997656a
AM
587 config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
588 $(INCDIR)/opcode/s390.h
0d8dfecf 589sh-dis.lo: sh-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 590 sh-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
0d8dfecf
AM
591sparc-dis.lo: sparc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
592 $(INCDIR)/opcode/sparc.h $(INCDIR)/dis-asm.h $(BFD_H) \
7997656a 593 $(INCDIR)/symcat.h $(INCDIR)/libiberty.h opintl.h
0d8dfecf
AM
594sparc-opc.lo: sparc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
595 $(INCDIR)/opcode/sparc.h
596tic30-dis.lo: tic30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 597 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic30.h
bbeb2e03 598tic54x-dis.lo: tic54x-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 599 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic54x.h \
bbeb2e03
L
600 $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h
601tic54x-opc.lo: tic54x-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
c0ef99a7 602 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic54x.h
0d8dfecf 603tic80-dis.lo: tic80-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a
AM
604 $(INCDIR)/opcode/tic80.h $(INCDIR)/dis-asm.h $(BFD_H) \
605 $(INCDIR)/symcat.h
0d8dfecf
AM
606tic80-opc.lo: tic80-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
607 $(INCDIR)/opcode/tic80.h
608v850-dis.lo: v850-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
609 $(INCDIR)/opcode/v850.h $(INCDIR)/dis-asm.h $(BFD_H) \
7997656a 610 $(INCDIR)/symcat.h opintl.h
0d8dfecf
AM
611v850-opc.lo: v850-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
612 $(INCDIR)/opcode/v850.h opintl.h
613vax-dis.lo: vax-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a
AM
614 $(INCDIR)/opcode/vax.h $(INCDIR)/dis-asm.h $(BFD_H) \
615 $(INCDIR)/symcat.h
0d8dfecf 616w65-dis.lo: w65-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 617 w65-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
c0ef99a7
AM
618xstormy16-asm.lo: xstormy16-asm.c sysdep.h config.h \
619 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \
620 $(INCDIR)/opcode/cgen.h xstormy16-opc.h opintl.h $(INCDIR)/xregex.h \
621 $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
622xstormy16-desc.lo: xstormy16-desc.c sysdep.h config.h \
623 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \
624 $(INCDIR)/opcode/cgen.h xstormy16-opc.h opintl.h $(INCDIR)/libiberty.h
625xstormy16-dis.lo: xstormy16-dis.c sysdep.h config.h \
626 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
627 xstormy16-desc.h $(INCDIR)/opcode/cgen.h xstormy16-opc.h \
628 opintl.h
629xstormy16-ibld.lo: xstormy16-ibld.c sysdep.h config.h \
630 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
631 xstormy16-desc.h $(INCDIR)/opcode/cgen.h xstormy16-opc.h \
632 opintl.h $(INCDIR)/safe-ctype.h
633xstormy16-opc.lo: xstormy16-opc.c sysdep.h config.h \
634 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \
635 $(INCDIR)/opcode/cgen.h xstormy16-opc.h $(INCDIR)/libiberty.h
0d8dfecf 636z8k-dis.lo: z8k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
7997656a 637 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h z8k-opc.h
0d8dfecf 638z8kgen.lo: z8kgen.c sysdep.h config.h $(INCDIR)/ansidecl.h
252b5132 639# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.154999 seconds and 4 git commands to generate.