* Makefile.in (ALL_CFLAGS): Define.
[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 exec_prefix = @exec_prefix@
25 bindir = $(exec_prefix)/bin
26 libdir = $(exec_prefix)/lib
27
28 datadir = $(prefix)/lib
29 mandir = $(prefix)/man
30 man1dir = $(mandir)/man1
31 man2dir = $(mandir)/man2
32 man3dir = $(mandir)/man3
33 man4dir = $(mandir)/man4
34 man5dir = $(mandir)/man5
35 man6dir = $(mandir)/man6
36 man7dir = $(mandir)/man7
37 man8dir = $(mandir)/man8
38 man9dir = $(mandir)/man9
39 infodir = $(prefix)/info
40 includedir = $(prefix)/include
41 oldincludedir =
42 docdir = $(srcdir)/doc
43
44 SHELL = /bin/sh
45
46 INSTALL = @INSTALL@
47 INSTALL_PROGRAM = @INSTALL_PROGRAM@
48 INSTALL_DATA = @INSTALL_DATA@
49
50 AR = @AR@
51 AR_FLAGS = rc
52 CC = @CC@
53 CFLAGS = @CFLAGS@
54 BISON = bison
55 MAKEINFO = makeinfo
56 RANLIB = @RANLIB@
57
58 INCDIR = $(srcdir)/../include
59 BFDDIR = $(srcdir)/../bfd
60 CSEARCH = -I. -I$(srcdir) -I../bfd -I$(INCDIR) -I$(BFDDIR)
61 DEP = mkdep
62
63
64 TARGETLIB = libopcodes.a
65
66 # To circumvent a Sun make VPATH bug, each file listed here
67 # should also have a foo.o: foo.c line further along in this file.
68
69 ALL_MACHINES = a29k-dis.o alpha-dis.o h8300-dis.o h8500-dis.o \
70 $(start-sanitize-arc) \
71 arc-dis.o arc-opc.o \
72 $(end-sanitize-arc) \
73 hppa-dis.o i386-dis.o i960-dis.o m68k-dis.o m68k-opc.o \
74 m88k-dis.o mips-dis.o mips-opc.o sh-dis.o sparc-dis.o \
75 sparc-opc.o z8k-dis.o ns32k-dis.o ppc-dis.o ppc-opc.o \
76 arm-dis.o w65-dis.o
77
78 OFILES = @BFD_MACHINES@ dis-buf.o disassemble.o
79
80 FLAGS_TO_PASS = \
81 "against=$(against)" \
82 "AR=$(AR)" \
83 "AR_FLAGS=$(AR_FLAGS)" \
84 "CC=$(CC)" \
85 "CFLAGS=$(CFLAGS)" \
86 "RANLIB=$(RANLIB)" \
87 "MAKEINFO=$(MAKEINFO)" \
88 "INSTALL=$(INSTALL)" \
89 "INSTALL_DATA=$(INSTALL_DATA)" \
90 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
91 "BISON=$(BISON)"
92
93 ALL_CFLAGS = $(CSEARCH) @HDEFINES@ $(CFLAGS)
94
95 .c.o:
96 $(CC) -c $(ALL_CFLAGS) $<
97
98 # C source files that correspond to .o's.
99 CFILES = i386-dis.c z8k-dis.c m68k-dis.c mips-dis.c ns32k-dis.c ppc-dis.c
100
101 STAGESTUFF = $(TARGETLIB) $(OFILES)
102
103 all: $(TARGETLIB)
104
105
106 .NOEXPORT:
107
108 installcheck check:
109
110 info:
111 clean-info:
112 install-info:
113 dvi:
114
115 # HDEPFILES comes from the host config; TDEPFILES from the target config.
116
117
118 $(TARGETLIB): $(OFILES)
119 rm -f $(TARGETLIB)
120 $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
121 $(RANLIB) $(TARGETLIB)
122
123 disassemble.o: disassemble.c $(INCDIR)/dis-asm.h
124 $(CC) -c @archdefs@ $(ALL_CFLAGS) $(srcdir)/disassemble.c
125
126 a29k-dis.o: a29k-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/a29k.h
127 dis-buf.o: dis-buf.c $(INCDIR)/dis-asm.h
128 h8500-dis.o: h8500-dis.c h8500-opc.h $(INCDIR)/dis-asm.h
129 h8300-dis.o: h8300-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/h8300.h
130 i386-dis.o: i386-dis.c $(INCDIR)/dis-asm.h
131 i960-dis.o: i960-dis.c $(INCDIR)/dis-asm.h
132 w65-dis.o: w65-dis.c
133 m68k-dis.o: m68k-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/floatformat.h \
134 $(INCDIR)/opcode/m68k.h
135 m68k-opc.o: m68k-opc.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/m68k.h
136 mips-dis.o: mips-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/mips.h
137 mips-opc.o: mips-opc.c $(INCDIR)/opcode/mips.h
138 ppc-dis.o: ppc-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/ppc.h
139 ppc-opc.o: ppc-opc.c $(INCDIR)/opcode/ppc.h
140 sparc-dis.o: sparc-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/sparc.h
141 sparc-opc.o: sparc-opc.c $(INCDIR)/opcode/sparc.h
142 z8k-dis.o: z8k-dis.c z8k-opc.h $(INCDIR)/dis-asm.h
143 ns32k-dis.o: ns32k-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/ns32k.h
144 sh-dis.o: sh-dis.c sh-opc.h $(INCDIR)/dis-asm.h
145 alpha-dis.o: alpha-dis.c alpha-opc.h $(INCDIR)/dis-asm.h
146 hppa-dis.o: hppa-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/hppa.h
147 m88k-dis.o: m88k-dis.c $(INCDIR)/dis-asm.h $(INCDIR)/opcode/m88k.h
148 arm-dis.o: arm-dis.c arm-opc.h $(INCDIR)/dis-asm.h
149
150 tags etags: TAGS
151
152 TAGS: force
153 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
154
155 MOSTLYCLEAN = *.o core *.E *.p *.ip config.log
156 mostlyclean:
157 rm -rf $(MOSTLYCLEAN)
158 clean:
159 rm -f *.a $(MOSTLYCLEAN)
160 distclean: clean
161 rm -rf Makefile config.status TAGS config.cache config.h
162 clobber realclean: distclean
163
164 # Mark everything as depending on config.status, since the timestamp on
165 # sysdep.h might actually move backwards if we reconfig and relink it
166 # to a different hosts/h-xxx.h file. This will force a recompile anyway.
167 RECONFIG = config.status
168
169
170
171 # This target should be invoked before building a new release.
172 # 'VERSION' file must be present and contain a string of the form "x.y"
173 #
174 roll:
175 @V=`cat VERSION` ; \
176 MAJ=`sed 's/\..*//' VERSION` ; \
177 MIN=`sed 's/.*\.//' VERSION` ; \
178 V=$$MAJ.`expr $$MIN + 1` ; \
179 rm -f VERSION ; \
180 echo $$V >VERSION ; \
181 echo Version $$V
182
183 # Dummy target to force execution of dependent targets.
184 #
185 force:
186
187 install:
188 $(INSTALL_DATA) $(TARGETLIB) $(libdir)/libopcodes.a
189 $(RANLIB) $(libdir)/libopcodes.a
190
191 Makefile: $(srcdir)/Makefile.in config.status
192 $(SHELL) config.status
193
194 config.status : configure $(srcdir)/../bfd/configure.host $(srcdir)/../bfd/config.bfd
195 $(SHELL) config.status --recheck
196
197 dep: $(CFILES)
198 mkdep $(CFLAGS) $?
199
200
201 # What appears below is generated by a hacked mkdep using gcc -MM.
202
203 # DO NOT DELETE THIS LINE -- mkdep uses it.
204 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
205
206
207 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
208
This page took 0.035862 seconds and 5 git commands to generate.