Check all inline frames if they are marked for skip
[deliverable/binutils-gdb.git] / opcodes / Makefile.am
CommitLineData
252b5132 1## Process this file with automake to generate Makefile.in
5bf135a7 2#
82704155 3# Copyright (C) 2012-2019 Free Software Foundation, Inc.
5bf135a7
NC
4#
5# This file is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 3 of the License, or
8# (at your option) any later version.
43e65147 9#
5bf135a7
NC
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
43e65147 14#
5bf135a7
NC
15# You should have received a copy of the GNU General Public License
16# along with this program; see the file COPYING3. If not see
17# <http://www.gnu.org/licenses/>.
18#
252b5132 19
d0ac1c44 20AUTOMAKE_OPTIONS = foreign no-dist
79887925 21ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
252b5132 22
ff13a42d
RW
23# Build '.' first so all generated files exist.
24SUBDIRS = . po
252b5132
RH
25
26INCDIR = $(srcdir)/../include
27BFDDIR = $(srcdir)/../bfd
252b5132 28
a2d91340 29WARN_CFLAGS = @WARN_CFLAGS@
9e9b66a9 30NO_WERROR = @NO_WERROR@
a2d91340
AC
31AM_CFLAGS = $(WARN_CFLAGS)
32
ff13a42d 33COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(INCLUDES) $(AM_CPPFLAGS) \
791f3971
L
34 $(CFLAGS_FOR_BUILD)
35LINK_FOR_BUILD = $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) \
36 $(LDFLAGS_FOR_BUILD) -o $@
ff13a42d 37
14ec8efd
RW
38libopcodes_la_LDFLAGS =
39if INSTALL_LIBBFD
573e8a1c
RW
40bfdlibdir = @bfdlibdir@
41bfdincludedir = @bfdincludedir@
81172ff2 42bfdlib_LTLIBRARIES = libopcodes.la
14ec8efd
RW
43bfdinclude_DATA = $(INCDIR)/dis-asm.h
44else
573e8a1c
RW
45# Empty these so that the respective installation directories will not be created.
46bfdlibdir =
47bfdincludedir =
48rpath_bfdlibdir = @bfdlibdir@
14ec8efd 49noinst_LTLIBRARIES = libopcodes.la
573e8a1c 50libopcodes_la_LDFLAGS += -rpath $(rpath_bfdlibdir)
14ec8efd 51endif
252b5132
RH
52
53# This is where bfd.h lives.
54BFD_H = ../bfd/bfd.h
55
2eee5593
AM
56BUILD_LIBS = @BUILD_LIBS@
57BUILD_LIB_DEPS = @BUILD_LIB_DEPS@
6c298591 58
252b5132
RH
59# Header files.
60HFILES = \
a06ea964 61 aarch64-asm.h aarch64-dis.h aarch64-opc.h aarch64-tbl.h \
79472b45 62 bpf-desc.h bpf-opc.h \
cfb8c092 63 epiphany-desc.h epiphany-opc.h \
252b5132 64 fr30-desc.h fr30-opc.h \
fd3c93d5 65 frv-desc.h frv-opc.h \
40fb9820 66 i386-init.h \
40b8e679
L
67 i386-opc.h \
68 i386-tbl.h \
43079f18
NC
69 ia64-asmtab.h \
70 ia64-opc.h \
a40cbfa3 71 ip2k-desc.h ip2k-opc.h \
47b1a55a 72 iq2000-desc.h iq2000-opc.h \
500b1f44
AM
73 lm32-desc.h \
74 lm32-opc.h \
49f58d10 75 m32c-desc.h m32c-opc.h \
252b5132
RH
76 m32r-desc.h m32r-opc.h \
77 mcore-opc.h \
bd2f2e55 78 mep-desc.h mep-opc.h \
7ba29e2a 79 microblaze-opc.h \
d031aafb 80 mt-desc.h mt-opc.h \
1c0d3aa6 81 score-opc.h \
252b5132
RH
82 sh-opc.h \
83 sysdep.h \
d70c5fc7 84 xc16x-desc.h xc16x-opc.h \
93fbbb04 85 xstormy16-desc.h xstormy16-opc.h \
252b5132
RH
86 z8k-opc.h
87
6f01793d
RW
88# C source files that correspond to .o's ending up in libopcodes
89# for all machines.
90TARGET_LIBOPCODES_CFILES = \
a06ea964
NC
91 aarch64-asm.c \
92 aarch64-asm-2.c \
93 aarch64-dis.c \
94 aarch64-dis-2.c \
95 aarch64-opc.c \
96 aarch64-opc-2.c \
252b5132
RH
97 alpha-dis.c \
98 alpha-opc.c \
71f22174 99 arc-dis.c \
0d2bcfaf 100 arc-ext.c \
6f01793d 101 arc-opc.c \
252b5132 102 arm-dis.c \
832ddf62 103 avr-dis.c \
4b7f6baa 104 bfin-dis.c \
252b5132 105 cgen-asm.c \
3609e0fe 106 cgen-bitset.c \
252b5132
RH
107 cgen-dis.c \
108 cgen-opc.c \
3d3d428f
NC
109 cr16-dis.c \
110 cr16-opc.c \
6c95a37f
HPN
111 cris-dis.c \
112 cris-opc.c \
1fe1f39c
NC
113 crx-dis.c \
114 crx-opc.c \
b8891f8d 115 csky-dis.c \
252b5132
RH
116 d10v-dis.c \
117 d10v-opc.c \
118 d30v-dis.c \
119 d30v-opc.c \
d172d4ba 120 dlx-dis.c \
79472b45
JM
121 bpf-asm.c \
122 bpf-desc.c \
123 bpf-dis.c \
124 bpf-ibld.c \
125 bpf-opc.c \
cfb8c092
NC
126 epiphany-asm.c \
127 epiphany-desc.c \
128 epiphany-dis.c \
129 epiphany-ibld.c \
130 epiphany-opc.c \
252b5132
RH
131 fr30-asm.c \
132 fr30-desc.c \
133 fr30-dis.c \
134 fr30-ibld.c \
135 fr30-opc.c \
fd3c93d5
DB
136 frv-asm.c \
137 frv-desc.c \
138 frv-dis.c \
139 frv-ibld.c \
140 frv-opc.c \
3f8107ab
AM
141 ft32-dis.c \
142 ft32-opc.c \
252b5132 143 h8300-dis.c \
252b5132
RH
144 hppa-dis.c \
145 i386-dis.c \
0b1cf022 146 i386-opc.c \
800eeca4 147 ia64-dis.c \
800eeca4 148 ia64-opc.c \
a40cbfa3
NC
149 ip2k-asm.c \
150 ip2k-desc.c \
151 ip2k-dis.c \
152 ip2k-ibld.c \
153 ip2k-opc.c \
47b1a55a
SC
154 iq2000-asm.c \
155 iq2000-desc.c \
156 iq2000-dis.c \
157 iq2000-ibld.c \
158 iq2000-opc.c \
828c0124
JK
159 lm32-asm.c \
160 lm32-desc.c \
828c0124
JK
161 lm32-dis.c \
162 lm32-ibld.c \
163 lm32-opc.c \
828c0124 164 lm32-opinst.c \
6f01793d
RW
165 m10200-dis.c \
166 m10200-opc.c \
167 m10300-dis.c \
168 m10300-opc.c \
49f58d10
JB
169 m32c-asm.c \
170 m32c-desc.c \
171 m32c-dis.c \
172 m32c-ibld.c \
173 m32c-opc.c \
252b5132
RH
174 m32r-asm.c \
175 m32r-desc.c \
176 m32r-dis.c \
177 m32r-ibld.c \
178 m32r-opc.c \
179 m32r-opinst.c \
60bcf0fa
NC
180 m68hc11-dis.c \
181 m68hc11-opc.c \
252b5132
RH
182 m68k-dis.c \
183 m68k-opc.c \
7b4ae824 184 s12z-dis.c \
ef1ad42b 185 s12z-opc.c \
252b5132 186 mcore-dis.c \
bd2f2e55
DB
187 mep-asm.c \
188 mep-desc.c \
189 mep-dis.c \
190 mep-ibld.c \
191 mep-opc.c \
a3c62988 192 metag-dis.c \
7ba29e2a 193 microblaze-dis.c \
df58fc94 194 micromips-opc.c \
6f01793d 195 mips-dis.c \
252b5132
RH
196 mips-opc.c \
197 mips16-opc.c \
3c3bdf30
NC
198 mmix-dis.c \
199 mmix-opc.c \
6f01793d
RW
200 moxie-dis.c \
201 moxie-opc.c \
34c911a4 202 msp430-decode.c \
6f01793d 203 msp430-dis.c \
d031aafb
NS
204 mt-asm.c \
205 mt-desc.c \
206 mt-dis.c \
207 mt-ibld.c \
208 mt-opc.c \
35c08157
KLC
209 nds32-asm.c \
210 nds32-dis.c \
fe944acf 211 nfp-dis.c \
36591ba1
SL
212 nios2-dis.c \
213 nios2-opc.c \
252b5132 214 ns32k-dis.c \
73589c9d
CS
215 or1k-asm.c \
216 or1k-desc.c \
217 or1k-dis.c \
218 or1k-ibld.c \
219 or1k-opc.c \
e135f41b
NC
220 pdp11-dis.c \
221 pdp11-opc.c \
1e608f98
ILT
222 pj-dis.c \
223 pj-opc.c \
252b5132
RH
224 ppc-dis.c \
225 ppc-opc.c \
11146849
DD
226 pru-dis.c \
227 pru-opc.c \
dd1d944e
AM
228 riscv-dis.c \
229 riscv-opc.c \
99c513f6
DD
230 rl78-decode.c \
231 rl78-dis.c \
c7927a3c
NC
232 rx-decode.c \
233 rx-dis.c \
a85d7ed0 234 s390-dis.c \
6f01793d 235 s390-opc.c \
1c0d3aa6 236 score-dis.c \
c3b7224a 237 score7-dis.c \
252b5132
RH
238 sh-dis.c \
239 sparc-dis.c \
240 sparc-opc.c \
e9f53129
AM
241 spu-dis.c \
242 spu-opc.c \
252b5132 243 tic30-dis.c \
026df7c5 244 tic4x-dis.c \
5c84d377
TW
245 tic54x-dis.c \
246 tic54x-opc.c \
40b36596 247 tic6x-dis.c \
252b5132
RH
248 tic80-dis.c \
249 tic80-opc.c \
aa137e4d
NC
250 tilegx-dis.c \
251 tilegx-opc.c \
252 tilepro-dis.c \
253 tilepro-opc.c \
71f22174
AS
254 v850-dis.c \
255 v850-opc.c \
252b5132 256 vax-dis.c \
1945cfa5
EB
257 visium-dis.c \
258 visium-opc.c \
62ecb94c 259 wasm32-dis.c \
d70c5fc7
NC
260 xc16x-asm.c \
261 xc16x-desc.c \
262 xc16x-dis.c \
263 xc16x-ibld.c \
264 xc16x-opc.c \
93fbbb04
GK
265 xstormy16-asm.c \
266 xstormy16-desc.c \
267 xstormy16-dis.c \
268 xstormy16-ibld.c \
269 xstormy16-opc.c \
e0001a05 270 xtensa-dis.c \
f6c1a2d5 271 xgate-dis.c \
5bf135a7 272 xgate-opc.c \
3c9b82ba 273 z80-dis.c \
6f01793d
RW
274 z8k-dis.c
275
276# C source files that correspond to .o's ending up in libopcodes.
277LIBOPCODES_CFILES = \
278 $(TARGET_LIBOPCODES_CFILES) \
279 dis-buf.c \
280 dis-init.c \
281 disassemble.c
282
283# C source files that correspond to .o's.
284CFILES = \
285 $(LIBOPCODES_CFILES) \
a06ea964 286 aarch64-gen.c \
6f01793d
RW
287 i386-gen.c \
288 ia64-asmtab.c \
289 ia64-gen.c \
290 ia64-opc-a.c \
291 ia64-opc-b.c \
292 ia64-opc-f.c \
293 ia64-opc-i.c \
294 ia64-opc-m.c \
295 ia64-opc-d.c \
296 s390-mkopc.c \
252b5132
RH
297 z8kgen.c
298
6f01793d 299ALL_MACHINES = $(TARGET_LIBOPCODES_CFILES:.c=.lo)
252b5132
RH
300
301OFILES = @BFD_MACHINES@
302
0fa6f7ce
AM
303# development.sh is used to determine -Werror default.
304CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/development.sh
3f85e526 305
14ec8efd 306AM_CPPFLAGS = -I. -I$(srcdir) -I../bfd -I$(INCDIR) -I$(BFDDIR) @HDEFINES@ @INCINTL@
252b5132 307
758227f0
RW
308disassemble.lo: disassemble.c
309if am__fastdepCC
310 $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ @archdefs@ $(srcdir)/disassemble.c
311 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
312else
313if AMDEP
314 source='disassemble.c' object='$@' libtool=yes @AMDEPBACKSLASH@
315 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
316endif
317 $(LTCOMPILE) -c -o $@ @archdefs@ $(srcdir)/disassemble.c
318endif
252b5132 319
92c2346c 320libopcodes_la_SOURCES = dis-buf.c disassemble.c dis-init.c
3ba7a1aa
DJ
321# It's desirable to list ../bfd/libbfd.la in DEPENDENCIES and LIBADD.
322# Unfortunately this causes libtool to add -L$(libdir), referring to the
323# planned install directory of libbfd. This can cause us to pick up an
324# old version of libbfd, or to pick up libbfd for the wrong architecture
45d42143
NC
325# if host != build. So for building with shared libraries we use a
326# hardcoded path to libbfd.so instead of relying on the entries in libbfd.la.
327libopcodes_la_DEPENDENCIES = $(OFILES) @SHARED_DEPENDENCIES@
328libopcodes_la_LIBADD = $(OFILES) @SHARED_LIBADD@
14ec8efd 329libopcodes_la_LDFLAGS += -release `cat ../bfd/libtool-soversion` @SHARED_LDFLAGS@
758227f0 330# Allow dependency tracking to work on all the source files.
6f01793d 331EXTRA_libopcodes_la_SOURCES = $(LIBOPCODES_CFILES)
252b5132
RH
332
333# libtool will build .libs/libopcodes.a. We create libopcodes.a in
334# the build directory so that we don't have to convert all the
335# programs that use libopcodes.a simultaneously. This is a hack which
336# should be removed if everything else starts using libtool. FIXME.
337
338noinst_LIBRARIES = libopcodes.a
d92fa646 339libopcodes_a_SOURCES =
252b5132
RH
340
341stamp-lib: libopcodes.la
e56f75e9
ILT
342 libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
343 if [ -f $$libtooldir/libopcodes.a ]; then \
344 cp $$libtooldir/libopcodes.a libopcodes.tmp; \
847ee773 345 $(RANLIB) libopcodes.tmp; \
252b5132
RH
346 $(SHELL) $(srcdir)/../move-if-change libopcodes.tmp libopcodes.a; \
347 else true; fi
348 touch stamp-lib
349
350libopcodes.a: stamp-lib ; @true
351
352POTFILES = $(HFILES) $(CFILES)
353po/POTFILES.in: @MAINT@ Makefile
323ee3f4 354 for f in $(POTFILES); do echo $$f; done | LC_ALL=C sort > tmp \
252b5132
RH
355 && mv tmp $(srcdir)/po/POTFILES.in
356
252b5132 357CLEANFILES = \
cfb8c092 358 stamp-epiphany stamp-fr30 stamp-frv stamp-ip2k stamp-iq2000 stamp-lm32 \
a43817df 359 stamp-m32c stamp-m32r stamp-mep stamp-mt \
73589c9d 360 stamp-or1k stamp-xc16x stamp-xstormy16 \
a43817df 361 libopcodes.a stamp-lib
252b5132
RH
362
363
6e31aea3 364CGENDIR = @cgendir@
dc15e575 365CPUDIR = $(srcdir)/../cpu
0a40490e 366CGEN = "`if test -f ../guile/libguile/guile ; then echo ../guile/libguile/guile; else echo guile ; fi` -l ${cgendir}/guile.scm -s"
6e31aea3
BE
367CGENFLAGS = -v
368
bc98a631 369CGENDEPS = \
6e31aea3
BE
370 $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm \
371 $(CGENDIR)/opcodes.scm $(CGENDIR)/opc-asmdis.scm \
372 $(CGENDIR)/opc-ibld.scm $(CGENDIR)/opc-itab.scm \
373 $(CGENDIR)/opc-opinst.scm \
374 cgen-asm.in cgen-dis.in cgen-ibld.in
375
73589c9d 376CGEN_CPUS = epiphany fr30 frv ip2k iq2000 lm32 m32c m32r mep mt or1k xc16x xstormy16
4714fbc0 377
6e31aea3 378if CGEN_MAINT
79472b45 379BPF_DEPS = stamp-bpf
cfb8c092 380EPIPHANY_DEPS = stamp-epiphany
d1119f7a
DE
381FR30_DEPS = stamp-fr30
382FRV_DEPS = stamp-frv
a40cbfa3 383IP2K_DEPS = stamp-ip2k
d1119f7a 384IQ2000_DEPS = stamp-iq2000
84e94c90 385LM32_DEPS = stamp-lm32
49f58d10 386M32C_DEPS = stamp-m32c
6e31aea3 387M32R_DEPS = stamp-m32r
bd2f2e55 388MEP_DEPS = stamp-mep
4970f871 389MT_DEPS = stamp-mt
73589c9d 390OR1K_DEPS = stamp-or1k
d70c5fc7 391XC16X_DEPS = stamp-xc16x
93fbbb04 392XSTORMY16_DEPS = stamp-xstormy16
6e31aea3 393else
79472b45 394BPF_DEPS =
cfb8c092 395EPIPHANY_DEPS =
d1119f7a
DE
396FR30_DEPS =
397FRV_DEPS =
a40cbfa3 398IP2K_DEPS =
43e65147
L
399IQ2000_DEPS =
400LM32_DEPS =
49f58d10 401M32C_DEPS =
6e31aea3 402M32R_DEPS =
bd2f2e55 403MEP_DEPS =
4970f871 404MT_DEPS =
43e65147
L
405OR1K_DEPS =
406XC16X_DEPS =
407XSTORMY16_DEPS =
6e31aea3
BE
408endif
409
410run-cgen:
411 $(SHELL) $(srcdir)/cgen.sh opcodes $(srcdir) $(CGEN) \
9c2de729
DB
412 $(CGENDIR) "$(CGENFLAGS)" $(arch) $(prefix) $(archfile) $(opcfile) \
413 "$(options)" "$(extrafiles)"
6e31aea3
BE
414 touch stamp-${prefix}
415.PHONY: run-cgen
416
4714fbc0
DE
417# Maintainer utility rule to regenerate all cgen files.
418run-cgen-all:
419 for c in $(CGEN_CPUS) ; \
420 do \
421 $(MAKE) stamp-$$c || exit 1 ; \
422 done
423.PHONY: run-cgen-all
424
6e31aea3 425# For now, require developers to configure with --enable-cgen-maint.
d1119f7a 426
79472b45
JM
427$(srcdir)/bpf-desc.h $(srcdir)/bpf-desc.c $(srcdir)/bpf-opc.h \
428 $(srcdir)/bpf-opc.c $(srcdir)/bpf-ibld.c \
429 $(srcdir)/bpf-asm.c $(srcdir)/bpf-dis.c: $(BPF_DEPS)
430 @true
431
432stamp-bpf: $(CGENDEPS) $(CPUDIR)/bpf.cpu $(CPUDIR)/bpf.opc
433 $(MAKE) run-cgen arch=bpf prefix=bpf \
434 archfile=$(CPUDIR)/bpf.cpu opcfile=$(CPUDIR)/bpf.opc
435
cfb8c092
NC
436$(srcdir)/epiphany-desc.h $(srcdir)/epiphany-desc.c $(srcdir)/epiphany-opc.h \
437 $(srcdir)/epiphany-opc.c $(srcdir)/epiphany-ibld.c \
438 $(srcdir)/epiphany-opinst.c $(srcdir)/epiphany-asm.c \
439 $(srcdir)/epiphany-dis.c: $(EPIPHANY_DEPS)
440 @true
441
442stamp-epiphany: $(CGENDEPS) $(CPUDIR)/epiphany.cpu $(CPUDIR)/epiphany.opc
443 $(MAKE) run-cgen arch=epiphany prefix=epiphany options= \
444 archfile=$(CPUDIR)/epiphany.cpu opcfile=$(CPUDIR)/epiphany.opc extrafiles=
445
d1119f7a
DE
446$(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)
447 @true
448stamp-fr30: $(CGENDEPS) $(CPUDIR)/fr30.cpu $(CPUDIR)/fr30.opc
449 $(MAKE) run-cgen arch=fr30 prefix=fr30 options= \
450 archfile=$(CPUDIR)/fr30.cpu opcfile=$(CPUDIR)/fr30.opc extrafiles=
451
452$(srcdir)/frv-desc.h $(srcdir)/frv-desc.c $(srcdir)/frv-opc.h $(srcdir)/frv-opc.c $(srcdir)/frv-ibld.c $(srcdir)/frv-asm.c $(srcdir)/frv-dis.c: $(FRV_DEPS)
453 @true
dc15e575 454stamp-frv: $(CGENDEPS) $(CPUDIR)/frv.cpu $(CPUDIR)/frv.opc
d1119f7a 455 $(MAKE) run-cgen arch=frv prefix=frv options= \
dc15e575 456 archfile=$(CPUDIR)/frv.cpu opcfile=$(CPUDIR)/frv.opc extrafiles=
d1119f7a 457
a40cbfa3
NC
458$(srcdir)/ip2k-desc.h $(srcdir)/ip2k-desc.c $(srcdir)/ip2k-opc.h $(srcdir)/ip2k-opc.c $(srcdir)/ip2k-ibld.c $(srcdir)/ip2k-asm.c $(srcdir)/ip2k-dis.c: $(IP2K_DEPS)
459 @true
460stamp-ip2k: $(CGENDEPS) $(CPUDIR)/ip2k.cpu $(CPUDIR)/ip2k.opc
9c2de729
DB
461 $(MAKE) run-cgen arch=ip2k prefix=ip2k options= \
462 archfile=$(CPUDIR)/ip2k.cpu opcfile=$(CPUDIR)/ip2k.opc extrafiles=
a40cbfa3 463
d1119f7a
DE
464$(srcdir)/iq2000-desc.h $(srcdir)/iq2000-desc.c $(srcdir)/iq2000-opc.h $(srcdir)/iq2000-opc.c $(srcdir)/iq2000-ibld.c $(srcdir)/iq2000-asm.c $(srcdir)/iq2000-dis.c: $(IQ2000_DEPS)
465 @true
dc15e575
NC
466stamp-iq2000: $(CGENDEPS) $(CPUDIR)/iq2000.cpu \
467 $(CPUDIR)/iq2000.opc $(CPUDIR)/iq2000m.cpu \
468 $(CPUDIR)/iq10.cpu
d1119f7a 469 $(MAKE) run-cgen arch=iq2000 prefix=iq2000 options= \
dc15e575
NC
470 archfile=$(CPUDIR)/iq2000.cpu \
471 opcfile=$(CPUDIR)/iq2000.opc extrafiles=
d1119f7a 472
84e94c90
NC
473$(srcdir)lm32-desc.h $(srcdir)/lm32-desc.c $(srcdir)/lm32-opc.h $(srcdir)/lm32-opc.c $(srcdir)/lm32-ibld.c $(srcdir)/lm32-opinst.c $(srcdir)/lm32-asm.c $(srcdir)/lm32-dis.c: $(LM32_DEPS)
474 @true
dc15e575 475stamp-lm32: $(CGENDEPS) $(CPUDIR)/lm32.cpu $(CPUDIR)/lm32.opc
84e94c90 476 $(MAKE) run-cgen arch=lm32 prefix=lm32 options=opinst \
dc15e575
NC
477 archfile=$(CPUDIR)/lm32.cpu \
478 opcfile=$(CPUDIR)/lm32.opc \
84e94c90
NC
479 extrafiles=opinst
480
49f58d10 481$(srcdir)/m32c-desc.h $(srcdir)/m32c-desc.c $(srcdir)/m32c-opc.h $(srcdir)/m32c-opc.c $(srcdir)/m32c-ibld.c $(srcdir)/m32c-asm.c $(srcdir)/m32c-dis.c: $(M32C_DEPS)
a6743a54 482 @true
dc15e575 483stamp-m32c: $(CGENDEPS) $(CPUDIR)/m32c.cpu $(CPUDIR)/m32c.opc
49f58d10 484 $(MAKE) run-cgen arch=m32c prefix=m32c options= \
dc15e575
NC
485 archfile=$(CPUDIR)/m32c.cpu \
486 opcfile=$(CPUDIR)/m32c.opc extrafiles=
49f58d10 487
6e31aea3 488$(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 489 @true
dc15e575 490stamp-m32r: $(CGENDEPS) $(CPUDIR)/m32r.cpu $(CPUDIR)/m32r.opc
9c2de729 491 $(MAKE) run-cgen arch=m32r prefix=m32r options=opinst \
dc15e575
NC
492 archfile=$(CPUDIR)/m32r.cpu \
493 opcfile=$(CPUDIR)/m32r.opc extrafiles=opinst
6e31aea3 494
bd2f2e55
DB
495$(srcdir)/mep-desc.h $(srcdir)/mep-desc.c $(srcdir)/mep-opc.h $(srcdir)/mep-opc.c $(srcdir)/mep-ibld.c $(srcdir)/mep-asm.c $(srcdir)/mep-dis.c: $(MEP_DEPS)
496 @true
497stamp-mep: $(CGENDEPS) $(CPUDIR)/mep.cpu $(CPUDIR)/mep-default.cpu $(CPUDIR)/mep-core.cpu $(CPUDIR)/mep-h1.cpu $(CPUDIR)/mep-ext-cop.cpu $(CPUDIR)/mep-sample-ucidsp.cpu $(CPUDIR)/mep-rhcop.cpu $(CPUDIR)/mep-fmax.cpu $(CPUDIR)/mep.opc
498 $(MAKE) run-cgen arch=mep prefix=mep options= \
499 archfile=$(CPUDIR)/mep.cpu opcfile=$(CPUDIR)/mep.opc extrafiles=
500
d031aafb 501$(srcdir)/mt-desc.h $(srcdir)/mt-desc.c $(srcdir)/mt-opc.h $(srcdir)/mt-opc.c $(srcdir)/mt-ibld.c $(srcdir)/mt-asm.c $(srcdir)/mt-dis.c: $(MT_DEPS)
ac188222 502 @true
dc15e575 503stamp-mt: $(CGENDEPS) $(CPUDIR)/mt.cpu $(CPUDIR)/mt.opc
d031aafb 504 $(MAKE) run-cgen arch=mt prefix=mt options= \
dc15e575
NC
505 archfile=$(CPUDIR)/mt.cpu \
506 opcfile=$(CPUDIR)/mt.opc extrafiles=
ac188222 507
73589c9d 508$(srcdir)/or1k-desc.h $(srcdir)/or1k-desc.c $(srcdir)/or1k-opc.h $(srcdir)/or1k-opc.c $(srcdir)/or1k-ibld.c $(srcdir)/or1k-opinst.c $(srcdir)/or1k-asm.c $(srcdir)/or1k-dis.c: $(OR1K_DEPS)
87e6d782 509 @true
73589c9d
CS
510stamp-or1k: $(CGENDEPS) $(CPUDIR)/or1k.cpu $(CPUDIR)/or1k.opc $(CPUDIR)/or1kcommon.cpu $(CPUDIR)/or1korbis.cpu $(CPUDIR)/or1korfpx.cpu
511 $(MAKE) run-cgen arch=or1k prefix=or1k options=opinst \
512 archfile=$(CPUDIR)/or1k.cpu opcfile=$(CPUDIR)/or1k.opc extrafiles=opinst
87e6d782 513
d1119f7a 514$(srcdir)/xc16x-desc.h $(srcdir)/xc16x-desc.c $(srcdir)/xc16x-opc.h $(srcdir)/xc16x-opc.c $(srcdir)/xc16x-ibld.c $(srcdir)/xc16x-asm.c $(srcdir)/xc16x-dis.c: $(XC16X_DEPS)
47b1a55a 515 @true
dc15e575 516stamp-xc16x: $(CGENDEPS) $(CPUDIR)/xc16x.cpu $(CPUDIR)/xc16x.opc
d1119f7a 517 $(MAKE) run-cgen arch=xc16x prefix=xc16x options= \
dc15e575
NC
518 archfile=$(CPUDIR)/xc16x.cpu \
519 opcfile=$(CPUDIR)/xc16x.opc \
c7e770a0 520 extrafiles=
47b1a55a 521
93fbbb04
GK
522$(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)
523 @true
524stamp-xstormy16: $(CGENDEPS) $(CPUDIR)/xstormy16.cpu $(CPUDIR)/xstormy16.opc
9c2de729
DB
525 $(MAKE) run-cgen arch=xstormy16 prefix=xstormy16 options= \
526 archfile=$(CPUDIR)/xstormy16.cpu opcfile=$(CPUDIR)/xstormy16.opc extrafiles=
93fbbb04 527
a06ea964
NC
528MOSTLYCLEANFILES = aarch64-gen$(EXEEXT_FOR_BUILD) i386-gen$(EXEEXT_FOR_BUILD) \
529 ia64-gen$(EXEEXT_FOR_BUILD) s390-mkopc$(EXEEXT_FOR_BUILD) s390-opc.tab \
530 z8kgen$(EXEEXT_FOR_BUILD) opc2c$(EXEEXT_FOR_BUILD)
ff13a42d 531
a06ea964
NC
532MAINTAINERCLEANFILES = $(srcdir)/aarch64-asm-2.c $(srcdir)/aarch64-dis-2.c \
533 $(srcdir)/aarch64-opc-2.c $(srcdir)/i386-tbl.h $(srcdir)/i386-init.h \
56300268 534 $(srcdir)/ia64-asmtab.c $(srcdir)/z8k-opc.h \
34c911a4 535 $(srcdir)/msp430-decode.c \
99c513f6 536 $(srcdir)/rl78-decode.c \
49293ef7 537 $(srcdir)/rx-decode.c
ff13a42d 538
a06ea964
NC
539aarch64-gen$(EXEEXT_FOR_BUILD): aarch64-gen.o $(BUILD_LIB_DEPS)
540 $(LINK_FOR_BUILD) aarch64-gen.o $(BUILD_LIBS)
541
542aarch64-gen.o: aarch64-gen.c $(BFD_H) $(INCDIR)/getopt.h $(INCDIR)/libiberty.h\
543 $(INCDIR)/opcode/aarch64.h config.h aarch64-opc.h aarch64-tbl.h
544 $(COMPILE_FOR_BUILD) -c $(srcdir)/aarch64-gen.c
545
546$(srcdir)/aarch64-asm-2.c: @MAINT@ aarch64-gen$(exeext_for_build)
547 ./aarch64-gen$(exeext_for_build) --gen-asm > $@
548$(srcdir)/aarch64-dis-2.c: @MAINT@ aarch64-gen$(exeext_for_build)
549 ./aarch64-gen$(exeext_for_build) --gen-dis > $@
550$(srcdir)/aarch64-opc-2.c: @MAINT@ aarch64-gen$(exeext_for_build)
551 ./aarch64-gen$(exeext_for_build) --gen-opc > $@
552
2eee5593
AM
553i386-gen$(EXEEXT_FOR_BUILD): i386-gen.o $(BUILD_LIB_DEPS)
554 $(LINK_FOR_BUILD) i386-gen.o $(BUILD_LIBS)
ff13a42d
RW
555
556i386-gen.o: i386-gen.c i386-opc.h $(srcdir)/../include/opcode/i386.h \
557 $(INCDIR)/ansidecl.h $(INCDIR)/getopt.h $(INCDIR)/hashtab.h \
558 $(INCDIR)/libiberty.h $(INCDIR)/opcode/i386.h $(INCDIR)/safe-ctype.h \
559 config.h i386-opc.h sysdep.h
560 $(COMPILE_FOR_BUILD) -c $(srcdir)/i386-gen.c
40b8e679 561
43e65147 562$(srcdir)/i386-tbl.h: $(srcdir)/i386-init.h
40fb9820
L
563 @echo $@
564
c30be56e
JB
565$(srcdir)/i386-init.h: @MAINT@ i386-gen$(EXEEXT_FOR_BUILD) i386-opc.tbl i386-reg.tbl i386-opc.h
566 $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) - \
567 < $(srcdir)/i386-opc.tbl \
568 | ./i386-gen$(EXEEXT_FOR_BUILD) --srcdir $(srcdir)
ff13a42d
RW
569
570i386-opc.lo: $(srcdir)/i386-tbl.h
571
2eee5593
AM
572ia64-gen$(EXEEXT_FOR_BUILD): ia64-gen.o $(BUILD_LIB_DEPS)
573 $(LINK_FOR_BUILD) ia64-gen.o $(BUILD_LIBS)
40b8e679 574
ff13a42d
RW
575ia64-gen.o: ia64-gen.c $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/getopt.h \
576 $(INCDIR)/libiberty.h $(INCDIR)/opcode/ia64.h $(INCDIR)/safe-ctype.h \
577 $(INCDIR)/symcat.h config.h ia64-opc-a.c ia64-opc-b.c \
578 ia64-opc-d.c ia64-opc-f.c ia64-opc-i.c ia64-opc-m.c \
579 ia64-opc-x.c ia64-opc.h sysdep.h
580 $(COMPILE_FOR_BUILD) -c $(srcdir)/ia64-gen.c
800eeca4 581
ff13a42d
RW
582# Use a helper variable for the dependencies to avoid 'make' issues
583# with continuations in comments, as @MAINT@ can be expanded to '#'.
584ia64_asmtab_deps = ia64-gen$(EXEEXT_FOR_BUILD) ia64-ic.tbl \
585 ia64-raw.tbl ia64-waw.tbl ia64-war.tbl
586$(srcdir)/ia64-asmtab.c: @MAINT@ $(ia64_asmtab_deps)
587 ./ia64-gen$(EXEEXT_FOR_BUILD) --srcdir $(srcdir) > $@
252b5132 588
ff13a42d 589ia64-opc.lo: $(srcdir)/ia64-asmtab.c
b6849f55 590
34c911a4
NC
591$(srcdir)/msp430-decode.c: @MAINT@ $(srcdir)/msp430-decode.opc opc2c$(EXEEXT_FOR_BUILD)
592 ./opc2c$(EXEEXT_FOR_BUILD) $(srcdir)/msp430-decode.opc > $(srcdir)/msp430-decode.c
593
99c513f6
DD
594$(srcdir)/rl78-decode.c: @MAINT@ $(srcdir)/rl78-decode.opc opc2c$(EXEEXT_FOR_BUILD)
595 ./opc2c$(EXEEXT_FOR_BUILD) $(srcdir)/rl78-decode.opc > $(srcdir)/rl78-decode.c
596
49293ef7
NC
597$(srcdir)/rx-decode.c: @MAINT@ $(srcdir)/rx-decode.opc opc2c$(EXEEXT_FOR_BUILD)
598 ./opc2c$(EXEEXT_FOR_BUILD) $(srcdir)/rx-decode.opc > $(srcdir)/rx-decode.c
599
600opc2c$(EXEEXT_FOR_BUILD): opc2c.o $(BUILD_LIBS_DEPS)
601 $(LINK_FOR_BUILD) opc2c.o $(BUILD_LIBS)
602
603opc2c.o: opc2c.c $(INCDIR)/libiberty.h
604 $(COMPILE_FOR_BUILD) -c $(srcdir)/opc2c.c
605
ff13a42d
RW
606s390-mkopc$(EXEEXT_FOR_BUILD): s390-mkopc.c
607 $(COMPILE_FOR_BUILD) -o s390-mkopc $(srcdir)/s390-mkopc.c
608
609s390-opc.tab: s390-mkopc$(EXEEXT_FOR_BUILD) s390-opc.txt
610 ./s390-mkopc$(EXEEXT_FOR_BUILD) < $(srcdir)/s390-opc.txt > s390-opc.tab
b6849f55 611
758227f0 612s390-opc.lo: s390-opc.tab
252b5132 613
2eee5593
AM
614z8kgen$(EXEEXT_FOR_BUILD): z8kgen.o $(BUILD_LIB_DEPS)
615 $(LINK_FOR_BUILD) z8kgen.o $(BUILD_LIBS)
ff13a42d
RW
616
617z8kgen.o: z8kgen.c
618 $(COMPILE_FOR_BUILD) -c $(srcdir)/z8kgen.c
619
620$(srcdir)/z8k-opc.h: @MAINT@ z8kgen$(EXEEXT_FOR_BUILD)
621 ./z8kgen$(EXEEXT_FOR_BUILD) -a > $@
622
623z8k-dis.lo: $(srcdir)/z8k-opc.h
624
0fa6f7ce
AM
625MIPS_DEFS=`case \`cat ../bfd/ofiles\` in *elfxx-mips*) echo "-DHAVE_BFD_MIPS_ELF_GET_ABIFLAGS=1";; esac`
626mips-dis.lo: mips-dis.c
627if am__fastdepCC
628 $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(MIPS_DEFS) $<
629 $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
630else
631if AMDEP
632 source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
633 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
634endif
635 $(LTCOMPILE) -c -o $@ $(MIPS_DEFS) $<
636endif
637
758227f0
RW
638sh-dis.lo: sh-dis.c
639if am__fastdepCC
640 $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ @archdefs@ $(srcdir)/sh-dis.c
641 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
642else
643if AMDEP
644 source='sh-dis.c' object='$@' libtool=yes @AMDEPBACKSLASH@
645 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
646endif
647 $(LTCOMPILE) -c -o $@ @archdefs@ $(srcdir)/sh-dis.c
648endif
This page took 1.000936 seconds and 4 git commands to generate.