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