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