start writing functions for extracting and inserting unusual operands
[deliverable/binutils-gdb.git] / opcodes / Makefile.in
1 # Makefile template for Configure for the opcodes library.
2 # Copyright (C) 1990, 1991, 1992, 1995 Free Software Foundation, Inc.
3 # Written by Cygnus Support.
4 #
5 # This program 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 2 of the License, or
8 # (at your option) any later version.
9 #
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.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 VPATH = @srcdir@
20 srcdir = @srcdir@
21
22 prefix = @prefix@
23
24 program_transform_name = @program_transform_name@
25 exec_prefix = @exec_prefix@
26 bindir = $(exec_prefix)/bin
27 libdir = $(exec_prefix)/lib
28
29 datadir = $(prefix)/lib
30 mandir = $(prefix)/man
31 man1dir = $(mandir)/man1
32 man2dir = $(mandir)/man2
33 man3dir = $(mandir)/man3
34 man4dir = $(mandir)/man4
35 man5dir = $(mandir)/man5
36 man6dir = $(mandir)/man6
37 man7dir = $(mandir)/man7
38 man8dir = $(mandir)/man8
39 man9dir = $(mandir)/man9
40 infodir = $(prefix)/info
41 includedir = $(prefix)/include
42 oldincludedir =
43 docdir = $(srcdir)/doc
44
45 SHELL = /bin/sh
46
47 INSTALL = @INSTALL@
48 INSTALL_PROGRAM = @INSTALL_PROGRAM@
49 INSTALL_DATA = @INSTALL_DATA@
50
51 AR = @AR@
52 AR_FLAGS = rc
53 CC = @CC@
54 CFLAGS = @CFLAGS@
55 MAKEINFO = makeinfo
56 RANLIB = @RANLIB@
57
58 ALLLIBS = @ALLLIBS@
59
60 PICFLAG = @PICFLAG@
61 SHLIB = @SHLIB@
62 SHLIB_CC = @SHLIB_CC@
63 SHLIB_CFLAGS = @SHLIB_CFLAGS@
64 COMMON_SHLIB = @COMMON_SHLIB@
65 SHLIB_DEP = @SHLIB_DEP@
66 SHLINK = @SHLINK@
67
68 SONAME = lib`echo $(SHLIB) | sed -e 's,^\.\./bfd/,,' -e 's/^lib//' | sed '$(program_transform_name)'`
69
70 INCDIR = $(srcdir)/../include
71 BFDDIR = $(srcdir)/../bfd
72 CSEARCH = -I. -I$(srcdir) -I../bfd -I$(INCDIR) -I$(BFDDIR)
73 DEP = mkdep
74
75 TARGETLIB = libopcodes.a
76
77 # To circumvent a Sun make VPATH bug, each file listed here
78 # should also have a foo.o: foo.c line further along in this file.
79
80 ALL_MACHINES = a29k-dis.o alpha-dis.o h8300-dis.o h8500-dis.o \
81 $(start-sanitize-arc) \
82 arc-dis.o arc-opc.o \
83 $(end-sanitize-arc) \
84 hppa-dis.o i386-dis.o i960-dis.o m68k-dis.o m68k-opc.o \
85 m88k-dis.o mips-dis.o mips-opc.o sh-dis.o sparc-dis.o \
86 sparc-opc.o z8k-dis.o ns32k-dis.o ppc-dis.o ppc-opc.o \
87 arm-dis.o w65-dis.o
88
89 OFILES = @BFD_MACHINES@ dis-buf.o disassemble.o
90
91 FLAGS_TO_PASS = \
92 "against=$(against)" \
93 "AR=$(AR)" \
94 "AR_FLAGS=$(AR_FLAGS)" \
95 "CC=$(CC)" \
96 "CFLAGS=$(CFLAGS)" \
97 "RANLIB=$(RANLIB)" \
98 "MAKEINFO=$(MAKEINFO)" \
99 "INSTALL=$(INSTALL)" \
100 "INSTALL_DATA=$(INSTALL_DATA)" \
101 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)"
102
103 ALL_CFLAGS = $(CSEARCH) @HDEFINES@ $(CFLAGS)
104
105 .c.o:
106 if [ -n "$(PICFLAG)" ]; then \
107 $(CC) -c $(PICFLAG) $(ALL_CFLAGS) $< -o pic/$@; \
108 else true; fi
109 $(CC) -c $(ALL_CFLAGS) $<
110
111 # C source files that correspond to .o's.
112 CFILES = i386-dis.c z8k-dis.c m68k-dis.c mips-dis.c ns32k-dis.c ppc-dis.c
113
114 all: $(ALLLIBS)
115
116 .NOEXPORT:
117
118 installcheck check:
119
120 info:
121 clean-info:
122 install-info:
123 dvi:
124
125 # HDEPFILES comes from the host config; TDEPFILES from the target config.
126
127
128 $(TARGETLIB): $(OFILES)
129 rm -f $(TARGETLIB)
130 $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
131 $(RANLIB) $(TARGETLIB)
132
133 LIBIBERTY_LISTS = ../libiberty/required-list ../libiberty/needed-list
134 BFD_LIST = ../bfd/piclist
135
136 stamp-piclist: Makefile $(LIBIBERTY_LISTS) $(BFD_LIST)
137 rm -f tpiclist
138 if [ -n "$(PICFLAG)" ]; then \
139 echo $(OFILES) | sed -e 's,\([^ ][^ ]*\),pic/\1,g' > tpiclist; \
140 else \
141 echo $(OFILES) > tpiclist; \
142 fi
143 if [ "$(COMMON_SHLIB)" = "yes" ]; then \
144 lobjs=`cat $(LIBIBERTY_LISTS)`; \
145 if [ -n "$(PICFLAG)" ]; then \
146 lobjs=`echo $$lobjs | sed -e 's,\([^ ][^ ]*\),pic/\1,g'`; \
147 fi; \
148 lobjs=`echo $$lobjs | sed -e 's,\([^ ][^ ]*\),../libiberty/\1,g'`; \
149 echo $$lobjs >> tpiclist; \
150 sed -e 's,\([^ ][^ ]*\),../bfd/\1,g' $(BFD_LIST) >> tpiclist; \
151 else true; fi
152 $(srcdir)/../move-if-change tpiclist piclist
153 touch stamp-piclist
154
155 piclist: stamp-piclist ; @true
156
157 $(SHLIB): stamp-picdir $(OFILES) piclist $(SHLIB_DEP)
158 rm -f $(SHLIB)
159 $(SHLIB_CC) $(SHLIB_CFLAGS) -o $(SHLIB) `cat piclist`
160
161 $(SHLINK): $(SHLIB)
162 ts=lib`echo $(SHLIB) | sed -e 's,^\.\./bfd/,,' -e 's/^lib//' | sed -e '$(program_transform_name)'`; \
163 if [ "$(COMMON_SHLIB)" = "yes" ]; then \
164 ts=../bfd/$$ts; \
165 fi; \
166 if [ "$$ts" != "$(SHLIB)" ]; then \
167 rm -f $$ts; \
168 ln -sf `echo $(SHLIB) | sed -e 's,^\.\./bfd/,,'` $$ts; \
169 else true; fi
170 rm -f $(SHLINK)
171 ln -sf `echo $(SHLIB) | sed -e 's,^\.\./bfd/,,'` $(SHLINK)
172
173 # This target creates libTARGET-opcodes.so.VERSION as a symlink to
174 # libopcodes.so.VERSION. It is used on SunOS, which does not have SONAME.
175 stamp-tshlink: $(SHLIB)
176 tf=lib`echo $(SHLIB) | sed -e 's,\.\./bfd/,,' -e 's/^lib//' | sed '$(program_transform_name)'`; \
177 if [ "$(COMMON_SHLIB)" = "yes" ]; then \
178 tf=../bfd/$$tf; \
179 fi; \
180 if [ "$$tf" != "$(SHLIB)" ]; then \
181 rm -f $$tf; \
182 ln -sf $(SHLIB) $$tf; \
183 else true; fi
184 if [ "$(COMMON_SHLIB)" = "yes" ]; then \
185 tf=lib`echo $(TARGETLIB) | sed -e 's/^lib//' | sed '$(program_transform_name)'`; \
186 if [ "$$tf" != "$(TARGETLIB)" ]; then \
187 rm -f $$tf; \
188 ln -sf $(TARGETLIB) $$tf; \
189 else true; fi; \
190 else true; fi
191 touch stamp-tshlink
192
193 $(OFILES): stamp-picdir
194
195 disassemble.o: disassemble.c $(INCDIR)/dis-asm.h
196 if [ -n "$(PICFLAG)" ]; then \
197 $(CC) -c @archdefs@ $(PICFLAG) $(ALL_CFLAGS) $(srcdir)/disassemble.c -o pic/disassemble.o; \
198 else true; fi
199 $(CC) -c @archdefs@ $(ALL_CFLAGS) $(srcdir)/disassemble.c
200
201 a29k-dis.o: a29k-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/a29k.h
202 dis-buf.o: dis-buf.c $(INCDIR)/dis-asm.h
203 h8500-dis.o: h8500-dis.c h8500-opc.h $(INCDIR)/dis-asm.h
204 h8300-dis.o: h8300-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/h8300.h
205 i386-dis.o: i386-dis.c $(INCDIR)/dis-asm.h
206 i960-dis.o: i960-dis.c $(INCDIR)/dis-asm.h
207 w65-dis.o: w65-dis.c
208 m68k-dis.o: m68k-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/floatformat.h \
209 $(INCDIR)/opcode/m68k.h
210 m68k-opc.o: m68k-opc.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/m68k.h
211 mips-dis.o: mips-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/mips.h
212 mips-opc.o: mips-opc.c $(INCDIR)/opcode/mips.h
213 ppc-dis.o: ppc-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/ppc.h
214 ppc-opc.o: ppc-opc.c $(INCDIR)/opcode/ppc.h
215 sparc-dis.o: sparc-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/sparc.h
216 sparc-opc.o: sparc-opc.c $(INCDIR)/opcode/sparc.h
217 z8k-dis.o: z8k-dis.c z8k-opc.h $(INCDIR)/dis-asm.h
218 ns32k-dis.o: ns32k-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/ns32k.h
219 sh-dis.o: sh-dis.c sh-opc.h $(INCDIR)/dis-asm.h
220 alpha-dis.o: alpha-dis.c alpha-opc.h $(INCDIR)/dis-asm.h
221 hppa-dis.o: hppa-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/hppa.h
222 m88k-dis.o: m88k-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/m88k.h
223 arm-dis.o: arm-dis.c arm-opc.h $(INCDIR)/dis-asm.h
224
225 tags etags: TAGS
226
227 TAGS: force
228 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
229
230 MOSTLYCLEAN = *.o core *.E *.p *.ip config.log pic/*.o
231 mostlyclean:
232 rm -rf $(MOSTLYCLEAN)
233 clean:
234 rm -f *.a $(MOSTLYCLEAN) $(SHLIB) $(SHLINK) piclist stamp-piclist
235 distclean: clean
236 rm -rf Makefile config.status TAGS config.cache config.h stamp-h \
237 pic stamp-picdir
238 clobber realclean maintainer-clean: distclean
239
240 # Mark everything as depending on config.status, since the timestamp on
241 # sysdep.h might actually move backwards if we reconfig and relink it
242 # to a different hosts/h-xxx.h file. This will force a recompile anyway.
243 RECONFIG = config.status
244
245
246
247 # This target should be invoked before building a new release.
248 # 'VERSION' file must be present and contain a string of the form "x.y"
249 #
250 roll:
251 @V=`cat VERSION` ; \
252 MAJ=`sed 's/\..*//' VERSION` ; \
253 MIN=`sed 's/.*\.//' VERSION` ; \
254 V=$$MAJ.`expr $$MIN + 1` ; \
255 rm -f VERSION ; \
256 echo $$V >VERSION ; \
257 echo Version $$V
258
259 # Dummy target to force execution of dependent targets.
260 #
261 force:
262
263 install: $(ALLLIBS)
264 for f in $(ALLLIBS); do \
265 if [ "$$f" = "stamp-tshlink" ]; then \
266 continue; \
267 fi; \
268 tf=lib`echo $$f | sed -e 's,^\.\./bfd/,,' -e 's/^lib//' | sed '$(program_transform_name)'`; \
269 rm -f $(libdir)/$$tf; \
270 if [ "$$f" = "$(SHLINK)" ]; then \
271 ts=lib`echo $(SHLIB) | sed -e 's,^\.\./bfd/,,' -e 's/^lib//' | sed '$(program_transform_name)'`; \
272 ln -sf $$ts $(libdir)/$$tf; \
273 elif [ "$$f" = "$(SHLIB)" ]; then \
274 $(INSTALL_PROGRAM) $$f $(libdir)/$$tf; \
275 else \
276 $(INSTALL_DATA) $$f $(libdir)/$$tf; \
277 $(RANLIB) $(libdir)/$$tf; \
278 chmod a-x $(libdir)/$$tf; \
279 fi; \
280 done
281
282 Makefile: Makefile.in config.status
283 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
284
285 config.h: stamp-h ; @true
286 stamp-h: config.in config.status
287 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
288
289 config.status: configure $(srcdir)/../bfd/configure.host $(srcdir)/../bfd/config.bfd $(srcdir)/../bfd/VERSION
290 $(SHELL) config.status --recheck
291
292 dep: $(CFILES)
293 mkdep $(CFLAGS) $?
294
295 stamp-picdir:
296 if [ -n "$(PICFLAG)" ] && [ ! -d pic ]; then \
297 mkdir pic; \
298 else true; fi
299 touch stamp-picdir
300
301 # What appears below is generated by a hacked mkdep using gcc -MM.
302
303 # DO NOT DELETE THIS LINE -- mkdep uses it.
304 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
305
306
307 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
308
This page took 0.035585 seconds and 4 git commands to generate.