* Makefile.am (STAGESTUFF): Remove variable.
[deliverable/binutils-gdb.git] / opcodes / Makefile.am
CommitLineData
54cc8ed4
DE
1## Process this file with automake to generate Makefile.in
2
25161728
ILT
3AUTOMAKE_OPTIONS = cygnus
4
54cc8ed4
DE
5INCDIR = $(srcdir)/../include
6BFDDIR = $(srcdir)/../bfd
7DEP = mkdep
8
9lib_LTLIBRARIES = libopcodes.la
10
11# This is where bfd.h lives.
12BFD_H = ../bfd/bfd.h
13
14# Header files.
15HFILES = \
16 arm-opc.h \
17 h8500-opc.h \
18 sh-opc.h \
19 sysdep.h \
20 w65-opc.h \
21 z8k-opc.h
22
23# C source files that correspond to .o's.
24CFILES = \
25 a29k-dis.c \
26 alpha-dis.c \
27 alpha-opc.c \
28 arm-dis.c \
29 cgen-asm.c \
30 cgen-dis.c \
31 cgen-opc.c \
32 d10v-dis.c \
33 d10v-opc.c \
34 dis-buf.c \
35 disassemble.c \
36 h8300-dis.c \
37 h8500-dis.c \
38 hppa-dis.c \
39 i386-dis.c \
40 i960-dis.c \
41 m32r-asm.c \
42 m32r-dis.c \
43 m32r-opc.c \
44 m68k-dis.c \
45 m68k-opc.c \
46 m88k-dis.c \
47 mips-dis.c \
48 mips-opc.c \
49 mips16-opc.c \
50 m10200-dis.c \
51 m10200-opc.c \
52 m10300-dis.c \
53 m10300-opc.c \
54 ns32k-dis.c \
55 ppc-dis.c \
56 ppc-opc.c \
57 sh-dis.c \
58 sparc-dis.c \
59 sparc-opc.c \
ab0bd049 60 tic30-dis.c \
54cc8ed4
DE
61 w65-dis.c \
62 z8k-dis.c \
63 z8kgen.c
64
65ALL_MACHINES = \
66 a29k-dis.lo \
67 alpha-dis.lo \
68 alpha-opc.lo \
69 arc-dis.lo \
70 arc-opc.lo \
71 arm-dis.lo \
72 cgen-asm.lo \
73 cgen-dis.lo \
74 cgen-opc.lo \
75 d10v-dis.lo \
76 d10v-opc.lo \
77 $(start-sanitize-d30v) \
78 d30v-dis.lo \
79 d30v-opc.lo \
80 $(end-sanitize-d30v) \
81 h8300-dis.lo \
82 h8500-dis.lo \
83 hppa-dis.lo \
84 i386-dis.lo \
85 i960-dis.lo \
86 m32r-asm.lo \
87 m32r-dis.lo \
88 m32r-opc.lo \
89 m68k-dis.lo \
90 m68k-opc.lo \
91 m88k-dis.lo \
92 m10200-dis.lo \
93 m10200-opc.lo \
94 m10300-dis.lo \
95 m10300-opc.lo \
96 mips-dis.lo \
97 mips-opc.lo \
98 mips16-opc.lo \
99 ppc-dis.lo \
100 ppc-opc.lo \
101 ns32k-dis.lo \
102 sh-dis.lo \
103 sparc-dis.lo \
104 sparc-opc.lo \
ab0bd049 105 tic30-dis.lo \
54cc8ed4
DE
106 $(start-sanitize-tic80) \
107 tic80-dis.lo \
108 tic80-opc.lo \
109 $(end-sanitize-tic80) \
110 $(start-sanitize-sky) \
37130f11
DE
111 dvp-dis.lo \
112 dvp-opc.lo \
54cc8ed4
DE
113 $(end-sanitize-sky) \
114 v850-dis.lo \
115 v850-opc.lo \
116 w65-dis.lo \
117 z8k-dis.lo
118
119OFILES = @BFD_MACHINES@
120
121INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(INCDIR) -I$(BFDDIR) @HDEFINES@
122
123disassemble.lo: disassemble.c $(INCDIR)/dis-asm.h
124 $(LIBTOOL) --mode=compile $(COMPILE) -c @archdefs@ $(srcdir)/disassemble.c
125
126libopcodes_la_SOURCES = dis-buf.c disassemble.c
127libopcodes_la_DEPENDENCIES = $(OFILES)
128libopcodes_la_LIBADD = $(OFILES)
3a994653 129libopcodes_la_LDFLAGS = -release $(VERSION)
54cc8ed4
DE
130
131# libtool will build .libs/libopcodes.a. We create libopcodes.a in
132# the build directory so that we don't have to convert all the
133# programs that use libopcodes.a simultaneously. This is a hack which
134# should be removed if everything else starts using libtool. FIXME.
135
136noinst_LIBRARIES = libopcodes.a
137
138stamp-lib: libopcodes.la
638985a9
ILT
139 if [ -f .libs/libopcodes.a ]; then \
140 cp .libs/libopcodes.a libopcodes.tmp; \
141 $(SHELL) $(srcdir)/../move-if-change libopcodes.tmp libopcodes.a; \
142 else true; fi
54cc8ed4
DE
143 touch stamp-lib
144
145libopcodes.a: stamp-lib ; @true
146
147CLEANFILES = libopcodes.a stamp-lib dep.sed .dep .dep1
bfc10abe
DE
148# start-sanitize-cygnus
149CLEANFILES = libopcodes.a stamp-lib dep.sed .dep .dep1 stamp-m32r
150# end-sanitize-cygnus
151
152# start-sanitize-cygnus
153# CGEN support is sanitized out of FSF releases for now.
154# Sanitization must be split between assignments and rules because
155# automake splits them that way.
156
157SCHEME = @SCHEME@
158SCHEMEFLAGS = -s
159CGENDIR = $(srcdir)/../cgen
160CGENFLAGS = -v
161
162CGENFILES = $(CGENDIR)/object.scm $(CGENDIR)/utils.scm \
ffee80df 163 $(CGENDIR)/attr.scm $(CGENDIR)/enum.scm $(CGENDIR)/types.scm \
bfc10abe
DE
164 $(CGENDIR)/utils-cgen.scm $(CGENDIR)/cpu.scm \
165 $(CGENDIR)/mode.scm $(CGENDIR)/mach.scm \
ffee80df 166 $(CGENDIR)/model.scm $(CGENDIR)/hardware.scm \
bfc10abe
DE
167 $(CGENDIR)/ifield.scm $(CGENDIR)/iformat.scm \
168 $(CGENDIR)/operand.scm $(CGENDIR)/insn.scm \
ffee80df
JL
169 $(CGENDIR)/opcodes.scm $(CGENDIR)/cdl-c.scm \
170 $(CGENDIR)/cgen-opc.scm cgen-opc.in cgen-asm.in cgen-dis.in
bfc10abe
DE
171# The end marker is written this way to pass through automake unscathed.
172ENDSAN = end-sanitize-cygnus
173
174# start-sanitize-cygnus
175cgen:
3b7029b1 176 $(SHELL) $(srcdir)/cgen.sh opcodes $(srcdir) $(CGENDIR) $(CGENFLAGS) $(SCHEME) $(SCHEMEFLAGS) $(arch)
bfc10abe
DE
177 touch stamp-${arch}
178
179.PHONY: cgen
180
181# For now, require developers to configure with --enable-maintainer-mode.
182# ??? Do we need to use a different option?
183m32r-opc.h m32r-opc.c m32r-asm.c m32r-dis.c: @MAINT@ stamp-m32r
184 @true
185stamp-m32r: $(CGENFILES) $(CGENDIR)/m32r.cpu $(CGENDIR)/m32r.opc
186 $(MAKE) cgen arch=m32r prefix=m32r
187# end-sanitize-cygnus
54cc8ed4
DE
188
189# start-sanitize-tic80
190tic80-dis.lo: tic80-dis.c $(INCDIR)/dis-asm.h ../bfd/bfd.h \
191 $(INCDIR)/opcode/tic80.h
192tic80-opc.lo: tic80-opc.c $(INCDIR)/opcode/tic80.h
193# end-sanitize-tic80
194
195# start-sanitize-sky
a6616528 196dvp-dis.lo: dvp-dis.c $(INCDIR)/dis-asm.h ../bfd/bfd.h \
37130f11
DE
197 $(INCDIR)/opcode/dvp.h
198dvp-opc.lo: dvp-opc.c $(INCDIR)/opcode/dvp.h
199
200mips-dis.lo: mips-dis.c
201 $(LIBTOOL) --mode=compile $(COMPILE) -c @archdefs@ $(srcdir)/mips-dis.c
54cc8ed4
DE
202# end-sanitize-sky
203
204# This dependency stuff is copied from BFD.
205
206.dep: dep.sed $(CFILES) $(HFILES) config.h
207 rm -f .dep1
208 $(MAKE) DEP=$(DEP) .dep1
209 sed -f dep.sed < .dep1 > .dep
210
211.dep1: $(CFILES)
212 rm -f .dep2 .dep2a
213 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep2
214 echo > .dep2a
215 $(DEP) -f .dep2a $(INCLUDES) $(CFLAGS) $?
216 sed -e '/DO NOT DELETE/d' -e '/^$$/d' < .dep2a >> .dep2
217 rm -f .dep2a
218 $(srcdir)/../move-if-change .dep2 .dep1
219
220dep.sed: dep-in.sed config.status
221 sed <$(srcdir)/dep-in.sed >dep.sed \
222 -e 's!@BFD_H@!$(BFD_H)!' \
223 -e 's!@INCDIR@!$(INCDIR)!' \
224 -e 's!@BFDDIR@!$(BFDDIR)!' \
225 -e 's!@SRCDIR@!$(srcdir)!'
226
227dep: .dep
228 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
229 cat .dep >> tmp-Makefile
230 $(srcdir)/../move-if-change tmp-Makefile Makefile
231
232dep-in: .dep
233 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
234 cat .dep >> tmp-Makefile.in
235 $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
236
237dep-am: .dep
238 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
239 cat .dep >> tmp-Makefile.am
240 $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
241
242.PHONY: dep dep-in dep-am
243
244# What appears below is generated by a hacked mkdep using gcc -MM.
245
246# DO NOT DELETE THIS LINE -- mkdep uses it.
247# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
248a29k-dis.lo: a29k-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
249 $(INCDIR)/ansidecl.h $(INCDIR)/opcode/a29k.h
250alpha-dis.lo: alpha-dis.c $(INCDIR)/ansidecl.h sysdep.h \
251 config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/opcode/alpha.h
252alpha-opc.lo: alpha-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/alpha.h \
253 $(BFD_H)
254arm-dis.lo: arm-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
ab0bd049
DE
255 $(INCDIR)/ansidecl.h arm-opc.h $(INCDIR)/coff/internal.h \
256 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
54cc8ed4
DE
257cgen-asm.lo: cgen-asm.c sysdep.h config.h $(INCDIR)/libiberty.h \
258 $(BFD_H) $(INCDIR)/opcode/cgen.h
259cgen-dis.lo: cgen-dis.c sysdep.h config.h $(INCDIR)/libiberty.h \
260 $(BFD_H) $(INCDIR)/opcode/cgen.h
261cgen-opc.lo: cgen-opc.c sysdep.h config.h $(INCDIR)/libiberty.h \
262 $(BFD_H) $(INCDIR)/opcode/cgen.h
263d10v-dis.lo: d10v-dis.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/d10v.h \
264 $(INCDIR)/dis-asm.h $(BFD_H)
265d10v-opc.lo: d10v-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/d10v.h
266dis-buf.lo: dis-buf.c sysdep.h config.h $(INCDIR)/dis-asm.h \
267 $(BFD_H)
268disassemble.lo: disassemble.c $(INCDIR)/ansidecl.h \
269 $(INCDIR)/dis-asm.h $(BFD_H)
270h8300-dis.lo: h8300-dis.c $(INCDIR)/opcode/h8300.h \
271 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h
272h8500-dis.lo: h8500-dis.c h8500-opc.h $(INCDIR)/dis-asm.h \
273 $(BFD_H) $(INCDIR)/ansidecl.h
274hppa-dis.lo: hppa-dis.c sysdep.h config.h $(INCDIR)/dis-asm.h \
275 $(BFD_H) $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h
276i386-dis.lo: i386-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
277 $(INCDIR)/ansidecl.h sysdep.h config.h
278i960-dis.lo: i960-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
279 $(INCDIR)/ansidecl.h
280m32r-asm.lo: m32r-asm.c sysdep.h config.h $(BFD_H) \
281 m32r-opc.h $(INCDIR)/opcode/cgen.h
282m32r-dis.lo: m32r-dis.c sysdep.h config.h $(INCDIR)/dis-asm.h \
283 $(BFD_H) m32r-opc.h $(INCDIR)/opcode/cgen.h
284m32r-opc.lo: m32r-opc.c sysdep.h config.h $(INCDIR)/libiberty.h \
285 $(BFD_H) m32r-opc.h $(INCDIR)/opcode/cgen.h
286m68k-dis.lo: m68k-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
287 $(INCDIR)/ansidecl.h $(INCDIR)/floatformat.h $(INCDIR)/opcode/m68k.h
288m68k-opc.lo: m68k-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/m68k.h
289m88k-dis.lo: m88k-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
290 $(INCDIR)/ansidecl.h $(INCDIR)/opcode/m88k.h
291mips-dis.lo: mips-dis.c sysdep.h config.h $(INCDIR)/dis-asm.h \
292 $(BFD_H) $(INCDIR)/opcode/mips.h $(BFDDIR)/elf-bfd.h \
293 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
294 $(INCDIR)/bfdlink.h $(INCDIR)/elf/mips.h
295mips-opc.lo: mips-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/mips.h
638985a9 296# start-sanitize-r5900
ffee80df 297mips-opc.lo: vu0.h
638985a9 298# end-sanitize-r5900
54cc8ed4
DE
299mips16-opc.lo: mips16-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/mips.h
300m10200-dis.lo: m10200-dis.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/mn10200.h \
301 $(INCDIR)/dis-asm.h $(BFD_H)
302m10200-opc.lo: m10200-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/mn10200.h
303m10300-dis.lo: m10300-dis.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/mn10300.h \
304 $(INCDIR)/dis-asm.h $(BFD_H)
305m10300-opc.lo: m10300-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/mn10300.h
306ns32k-dis.lo: ns32k-dis.c $(BFD_H) $(INCDIR)/ansidecl.h \
307 sysdep.h config.h $(INCDIR)/dis-asm.h $(INCDIR)/opcode/ns32k.h
308ppc-dis.lo: ppc-dis.c $(INCDIR)/ansidecl.h sysdep.h \
309 config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/opcode/ppc.h
310ppc-opc.lo: ppc-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/ppc.h
311sh-dis.lo: sh-dis.c sh-opc.h $(INCDIR)/dis-asm.h $(BFD_H) \
312 $(INCDIR)/ansidecl.h
313sparc-dis.lo: sparc-dis.c $(INCDIR)/ansidecl.h sysdep.h \
314 config.h $(INCDIR)/opcode/sparc.h $(INCDIR)/dis-asm.h \
315 $(BFD_H) $(INCDIR)/libiberty.h
316sparc-opc.lo: sparc-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/sparc.h
ab0bd049
DE
317tic30-dis.lo: tic30-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
318 $(INCDIR)/ansidecl.h $(INCDIR)/opcode/tic30.h
54cc8ed4
DE
319w65-dis.lo: w65-dis.c w65-opc.h $(INCDIR)/dis-asm.h \
320 $(BFD_H) $(INCDIR)/ansidecl.h
321z8k-dis.lo: z8k-dis.c sysdep.h config.h $(INCDIR)/dis-asm.h \
322 $(BFD_H) z8k-opc.h
323z8kgen.lo: z8kgen.c sysdep.h config.h
324# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.048119 seconds and 4 git commands to generate.