]>
Commit | Line | Data |
---|---|---|
fecd2382 | 1 | # Makefile for GNU Assembler |
7b9f3d46 | 2 | # Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 1997 |
011d16ac | 3 | # Free Software Foundation, Inc. |
fecd2382 | 4 | |
7420b02b | 5 | # This file is part of GNU GAS. |
fecd2382 | 6 | |
7420b02b JL |
7 | # GNU GAS is free software; you can redistribute it and/or modify |
8 | # it under the terms of the GNU General Public License as published by | |
9 | # the Free Software Foundation; either version 2, or (at your option) | |
10 | # any later version. | |
fecd2382 | 11 | |
7420b02b JL |
12 | # GNU GAS is distributed in the hope that it will be useful, |
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | # GNU General Public License for more details. | |
fecd2382 | 16 | |
7420b02b | 17 | # You should have received a copy of the GNU General Public License |
7b9f3d46 ILT |
18 | # along with GNU GAS; see the file COPYING. If not, write to the Free |
19 | # Software Foundation, 59 Temple Place - Suite 330, Boston, MA | |
20 | # 02111-1307, USA. | |
fecd2382 | 21 | |
fecd2382 RP |
22 | # The targets for external use include: |
23 | # all, doc, proto, install, uninstall, includes, TAGS, | |
daa7e184 | 24 | # clean, mostlyclean, distclean, realclean, stage1, stage2, stage3, stage4. |
fecd2382 RP |
25 | |
26 | # Variables that exist for you to override. | |
27 | # See below for how to change them for certain systems. | |
28 | ||
b11fb939 KR |
29 | VPATH = @srcdir@ |
30 | srcdir = @srcdir@ | |
7420b02b | 31 | srcroot = $(srcdir)/.. |
1058238c | 32 | |
fa156ffe | 33 | target_alias = @target_alias@ |
1bc37618 | 34 | prefix = @prefix@ |
1058238c | 35 | |
fa156ffe | 36 | program_transform_name = @program_transform_name@ |
1bc37618 | 37 | exec_prefix = @exec_prefix@ |
1c94de4d JM |
38 | bindir = @bindir@ |
39 | libdir = @libdir@ | |
b63defaa | 40 | tooldir = $(exec_prefix)/$(target_alias) |
787c6bfe | 41 | |
1c94de4d JM |
42 | datadir = @datadir@ |
43 | mandir = @mandir@ | |
1058238c RP |
44 | man1dir = $(mandir)/man1 |
45 | man2dir = $(mandir)/man2 | |
46 | man3dir = $(mandir)/man3 | |
47 | man4dir = $(mandir)/man4 | |
48 | man5dir = $(mandir)/man5 | |
49 | man6dir = $(mandir)/man6 | |
50 | man7dir = $(mandir)/man7 | |
51 | man8dir = $(mandir)/man8 | |
52 | man9dir = $(mandir)/man9 | |
1c94de4d JM |
53 | infodir = @infodir@ |
54 | includedir = @includedir@ | |
1058238c | 55 | |
8ee90d35 | 56 | VERSION=cygnus-2.7.1 |
c97b9003 | 57 | |
fecd2382 | 58 | SHELL = /bin/sh |
1058238c | 59 | |
7420b02b | 60 | INSTALL = $${srcroot}/install.sh -c |
1c94de4d JM |
61 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ |
62 | INSTALL_DATA = @INSTALL_DATA@ | |
011d16ac | 63 | INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)' |
c97b9003 | 64 | INSTALL_XFORM1= $(INSTALL_XFORM) -b=.1 |
fecd2382 | 65 | |
7b9f3d46 | 66 | DISTSTUFF= make-gas.com m68k-parse.c itbl-parse.c itbl-lex.c |
6d60424f | 67 | |
1058238c RP |
68 | AR = ar |
69 | AR_FLAGS = qv | |
a1c7c0f3 ILT |
70 | BISON = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi` |
71 | BISONFLAGS = | |
7b9f3d46 ILT |
72 | LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi` |
73 | LEXFLAGS = | |
1058238c | 74 | MAKEINFO = makeinfo |
c97b9003 | 75 | TEXI2DVI = texi2dvi |
fecd2382 | 76 | RANLIB = ranlib |
b11fb939 | 77 | CC = @CC@ |
011d16ac | 78 | HLDFLAGS = @HLDFLAGS@ |
8ee90d35 | 79 | HLDENV = @HLDENV@ |
1c94de4d | 80 | RPATH_ENVVAR = @RPATH_ENVVAR@ |
efec4a28 DP |
81 | CFLAGS = -g |
82 | LDFLAGS = | |
4b857710 | 83 | |
7420b02b JL |
84 | MAKEOVERRIDES= |
85 | ||
5f757edc ILT |
86 | EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \ |
87 | echo $${rootme}/../expect/expect ; \ | |
88 | else echo expect ; fi` | |
89 | ||
4b857710 ILT |
90 | FLAGS_TO_PASS = \ |
91 | "prefix=$(prefix)" \ | |
92 | "exec_prefix=$(exec_prefix)" \ | |
93 | "tooldir=$(tooldir)" \ | |
94 | "AR=$(AR)" \ | |
95 | "AR_FLAGS=$(AR_FLAGS)" \ | |
96 | "CC=$(CC)" \ | |
97 | "CFLAGS=$(CFLAGS)" \ | |
98 | "RANLIB=$(RANLIB)" \ | |
99 | "LOADLIBES=$(LOADLIBES)" \ | |
100 | "LDFLAGS=$(LDFLAGS)" \ | |
101 | "BISON=$(BISON)" \ | |
102 | "LEX=$(LEX)" \ | |
103 | "MAKEINFO=$(MAKEINFO)" \ | |
104 | "INSTALL=$(INSTALL)" \ | |
105 | "INSTALL_DATA=$(INSTALL_DATA)" \ | |
106 | "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" | |
fecd2382 | 107 | |
011d16ac ILT |
108 | RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \ |
109 | echo $${srcdir}/../dejagnu/runtest ; else echo runtest; \ | |
833c46e1 KR |
110 | fi` |
111 | RUNTESTFLAGS= | |
c97b9003 | 112 | |
efec4a28 | 113 | # use @target_cpu_type@ for refering to configured target name |
ee5cb7fe | 114 | IT_HDRS=itbl-parse.h $(srcdir)/itbl-ops.h |
efec4a28 DP |
115 | IT_SRCS=itbl-parse.c itbl-lex.c $(srcdir)/itbl-ops.c |
116 | IT_DEPS=$(srcdir)/itbl-parse.y $(srcdir)/itbl-lex.l $(srcdir)/config/itbl-@[email protected] | |
117 | IT_OBJS=itbl-parse.o itbl-lex.o itbl-ops.o | |
118 | ||
fecd2382 RP |
119 | # Lists of files for various purposes. |
120 | ||
121 | REAL_SOURCES = \ | |
122 | $(srcdir)/app.c \ | |
123 | $(srcdir)/as.c \ | |
124 | $(srcdir)/atof-generic.c \ | |
125 | $(srcdir)/bignum-copy.c \ | |
126 | $(srcdir)/cond.c \ | |
127 | $(srcdir)/expr.c \ | |
5d53038b | 128 | $(srcdir)/flonum-konst.c \ |
fecd2382 RP |
129 | $(srcdir)/flonum-copy.c \ |
130 | $(srcdir)/flonum-mult.c \ | |
131 | $(srcdir)/frags.c \ | |
132 | $(srcdir)/hash.c \ | |
fecd2382 RP |
133 | $(srcdir)/input-file.c \ |
134 | $(srcdir)/input-scrub.c \ | |
efec4a28 | 135 | $(srcdir)/itbl-ops.c \ |
dffc8b9e | 136 | $(srcdir)/literal.c \ |
fecd2382 RP |
137 | $(srcdir)/messages.c \ |
138 | $(srcdir)/output-file.c \ | |
139 | $(srcdir)/read.c \ | |
fecd2382 RP |
140 | $(srcdir)/subsegs.c \ |
141 | $(srcdir)/symbols.c \ | |
fecd2382 | 142 | $(srcdir)/write.c \ |
3340f7e5 | 143 | $(srcdir)/listing.c \ |
9cc8106c | 144 | $(srcdir)/ecoff.c \ |
b63defaa | 145 | $(srcdir)/stabs.c |
fecd2382 RP |
146 | |
147 | # in an expedient order | |
148 | LINKED_SOURCES = \ | |
149 | targ-cpu.c \ | |
150 | obj-format.c \ | |
151 | atof-targ.c | |
152 | ||
153 | SOURCES = $(LINKED_SOURCES) $(REAL_SOURCES) | |
154 | ||
155 | REAL_HEADERS = \ | |
156 | $(srcdir)/as.h \ | |
157 | $(srcdir)/bignum.h \ | |
158 | $(srcdir)/expr.h \ | |
159 | $(srcdir)/flonum.h \ | |
160 | $(srcdir)/frags.h \ | |
161 | $(srcdir)/hash.h \ | |
162 | $(srcdir)/input-file.h \ | |
efec4a28 | 163 | $(srcdir)/itbl-ops.h \ |
542e1629 | 164 | $(srcdir)/listing.h \ |
fecd2382 RP |
165 | $(srcdir)/tc.h \ |
166 | $(srcdir)/obj.h \ | |
167 | $(srcdir)/read.h \ | |
fecd2382 RP |
168 | $(srcdir)/struc-symbol.h \ |
169 | $(srcdir)/subsegs.h \ | |
170 | $(srcdir)/symbols.h \ | |
9cc8106c ILT |
171 | $(srcdir)/write.h \ |
172 | $(srcdir)/ecoff.h | |
fecd2382 RP |
173 | |
174 | LINKED_HEADERS = \ | |
fecd2382 RP |
175 | targ-env.h \ |
176 | targ-cpu.h \ | |
177 | obj-format.h \ | |
ee5cb7fe | 178 | atof-targ.h |
fecd2382 RP |
179 | |
180 | HEADERS = $(LINKED_HEADERS) $(REAL_HEADERS) | |
181 | ||
7e047ac2 ILT |
182 | TE_OBJS= |
183 | ||
b11fb939 | 184 | # @target_frag@ |
b3cd8555 | 185 | |
fecd2382 RP |
186 | OBJS = \ |
187 | targ-cpu.o \ | |
188 | obj-format.o \ | |
189 | atof-targ.o \ | |
190 | app.o \ | |
191 | as.o \ | |
192 | atof-generic.o \ | |
193 | bignum-copy.o \ | |
194 | cond.o \ | |
195 | expr.o \ | |
5d53038b | 196 | flonum-konst.o \ |
fecd2382 RP |
197 | flonum-copy.o \ |
198 | flonum-mult.o \ | |
199 | frags.o \ | |
200 | hash.o \ | |
fecd2382 RP |
201 | input-file.o \ |
202 | input-scrub.o \ | |
dffc8b9e | 203 | literal.o \ |
fecd2382 RP |
204 | messages.o \ |
205 | output-file.o \ | |
206 | read.o \ | |
fecd2382 RP |
207 | subsegs.o \ |
208 | symbols.o \ | |
fecd2382 | 209 | write.o \ |
3340f7e5 | 210 | listing.o \ |
9cc8106c | 211 | ecoff.o \ |
c751ad19 | 212 | stabs.o \ |
7e047ac2 ILT |
213 | sb.o \ |
214 | macro.o \ | |
816a827b | 215 | @extra_objects@ \ |
b3cd8555 | 216 | $(TE_OBJS) |
f6b67e4c | 217 | |
7e047ac2 ILT |
218 | GASPOBJS = \ |
219 | gasp.o \ | |
220 | macro.o \ | |
221 | sb.o \ | |
222 | hash.o | |
223 | ||
1df6e266 | 224 | all: .gdbinit as.new gasp.new |
7420b02b JL |
225 | @srcroot=`cd $(srcroot); pwd`; export srcroot; \ |
226 | (cd doc ; $(MAKE) $(FLAGS_TO_PASS) all) | |
79a54a5b | 227 | |
7420b02b JL |
228 | dvi info install-info clean-info: |
229 | @srcroot=`cd $(srcroot); pwd`; export srcroot; \ | |
230 | (cd doc ; $(MAKE) $(FLAGS_TO_PASS) $@) | |
fecd2382 | 231 | |
c20c7506 JL |
232 | make-gas.com: stamp-mk.com |
233 | stamp-mk.com: vmsconf.sh Makefile | |
816a827b | 234 | sh $(srcdir)/vmsconf.sh $(OBJS) > new-make.com |
c20c7506 JL |
235 | $(srcdir)/../move-if-change new-make.com $(srcdir)/make-gas.com |
236 | touch stamp-mk.com | |
237 | ||
fecd2382 RP |
238 | # Now figure out from those variables how to compile and link. |
239 | ||
240 | # This is the variable actually used when we compile. | |
6ded6615 | 241 | ALL_CFLAGS = -D_GNU_SOURCE $(INTERNAL_CFLAGS) $(CROSS) $(CFLAGS) $(HDEFINES) $(TDEFINES) |
fecd2382 | 242 | |
fecd2382 RP |
243 | # How to link with both our special library facilities |
244 | # and the system's installed libraries. | |
f6b67e4c | 245 | |
011d16ac | 246 | LIBDEPS = @OPCODES_DEP@ @BFDDEP@ $(LOCAL_LOADLIBES) ../libiberty/libiberty.a |
b11fb939 | 247 | LIBS = @OPCODES_LIB@ @BFDLIB@ $(LOCAL_LOADLIBES) ../libiberty/libiberty.a |
fecd2382 RP |
248 | |
249 | # Specify the directories to be searched for header files. | |
250 | # Both . and srcdir are used, in that order, | |
251 | # so that tm.h and config.h will be found in the compilation | |
252 | # subdirectory rather than in the source directory. | |
816a827b | 253 | INCLUDES = -I. -I$(srcdir) -I../bfd -I$(srcdir)/config -I$(srcdir)/../include -I$(srcdir)/.. -I$(srcdir)/../bfd |
fecd2382 RP |
254 | |
255 | # Always use -I$(srcdir)/config when compiling. | |
256 | .c.o: | |
257 | $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $< | |
258 | ||
259 | # This tells GNU make version 3 not to export all the variables | |
260 | # defined in this file into the environment. | |
261 | .NOEXPORT: | |
542e1629 | 262 | |
fecd2382 | 263 | # Files to be copied away after each stage in building. |
c20c7506 | 264 | STAGESTUFF = *.o as.new gasp.new |
fecd2382 | 265 | |
b11fb939 | 266 | $(OBJS): @ALL_OBJ_DEPS@ |
c92d9ee9 | 267 | |
011d16ac | 268 | as.new: $(OBJS) $(LIBDEPS) |
8ee90d35 | 269 | $(HLDENV) $(CC) $(HLDFLAGS) $(ALL_CFLAGS) $(LDFLAGS) -o as.new $(OBJS) $(LIBS) $(LOADLIBES) |
fecd2382 | 270 | |
84951544 KR |
271 | $(OBJS): config.h as.h targ-env.h obj-format.h targ-cpu.h flonum.h expr.h \ |
272 | struc-symbol.h write.h frags.h hash.h read.h symbols.h tc.h obj.h \ | |
034988c6 | 273 | listing.h bignum.h $(srcdir)/../include/libiberty.h |
b11fb939 | 274 | |
138b11d8 ILT |
275 | gasp.new: $(GASPOBJS) ../libiberty/libiberty.a |
276 | $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o gasp.new $(GASPOBJS) ../libiberty/libiberty.a $(LOADLIBES) | |
a5a4b5ac | 277 | |
c97b9003 DZ |
278 | installcheck: |
279 | @echo No installcheck target is available yet for the GNU assembler. | |
280 | ||
5f757edc ILT |
281 | site.exp: ./Makefile |
282 | @echo "Making a new config file..." | |
283 | -@rm -f ./tmp? | |
284 | @touch site.exp | |
285 | -@mv site.exp site.bak | |
286 | @echo "## these variables are automatically generated by make ##" > ./tmp0 | |
287 | @echo "# Do not edit here. If you wish to override these values," >> ./tmp0 | |
288 | @echo "# do so in the last section." >> ./tmp0 | |
289 | @echo set host_os @host_os@ >> ./tmp0 | |
290 | @echo set host_alias @host_alias@ >> ./tmp0 | |
291 | @echo set host_cpu @host_cpu@ >> ./tmp0 | |
292 | @echo set host_vendor @host_vendor@ >> ./tmp0 | |
293 | @echo set target_os @target_os@ >> ./tmp0 | |
294 | @echo set target_alias @target_alias@ >> ./tmp0 | |
295 | @echo set target_cpu @target_cpu@ >> ./tmp0 | |
296 | @echo set target_vendor @target_vendor@ >> ./tmp0 | |
297 | @echo set host_triplet @host@ >> ./tmp0 | |
298 | @echo set target_triplet @target@ >> ./tmp0 | |
299 | @echo set target_canonical @target@ >> ./tmp0 | |
b1986513 | 300 | @echo set srcdir ${srcdir}/testsuite >> ./tmp0 |
5f757edc ILT |
301 | @echo set exec_prefix ${exec_prefix} >> ./tmp0 |
302 | @echo set objdir `pwd` >> ./tmp0 | |
303 | @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0 | |
304 | @sed -e '1,/^## All variables above are.*##/ d' < site.bak >> ./tmp0 | |
305 | @mv -f ./tmp0 site.exp | |
306 | ||
307 | check: site.exp | |
308 | if [ -d testsuite ]; then \ | |
309 | true; \ | |
310 | else \ | |
311 | mkdir testsuite; \ | |
312 | fi | |
313 | rm -f testsuite/site.exp | |
314 | cp site.exp testsuite/site.exp | |
315 | rootme=`pwd`; export rootme; \ | |
316 | srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \ | |
1c94de4d JM |
317 | $(RPATH_ENVVAR)=$$rootme/../bfd:$$rootme/../opcodes:$$$(RPATH_ENVVAR); \ |
318 | export $(RPATH_ENVVAR); \ | |
5f757edc ILT |
319 | cd testsuite; \ |
320 | EXPECT=${EXPECT} ; export EXPECT ; \ | |
321 | if [ -f $${rootme}/../expect/expect ] ; then \ | |
322 | TCL_LIBRARY=$${srcdir}/../tcl/library ; \ | |
323 | export TCL_LIBRARY ; fi ; \ | |
324 | $(RUNTEST) --tool gas --srcdir $${srcdir}/testsuite $(RUNTESTFLAGS) | |
787c6bfe | 325 | |
b11fb939 | 326 | config.status: configure |
8ee90d35 | 327 | $(SHELL) config.status --recheck |
b11fb939 | 328 | |
fc00f451 | 329 | config.h: config-stamp ; @true |
b11fb939 | 330 | config-stamp: Makefile conf |
fc00f451 | 331 | -rm -f config.new config-stamp |
1e84ff7e KR |
332 | echo '/* config.h. Generated automatically by make. */' > config.new |
333 | echo '#ifndef GAS_VERSION' >> config.new | |
b11fb939 KR |
334 | echo '#define GAS_VERSION "$(VERSION)"' >> config.new |
335 | echo '' >> config.new | |
336 | cat conf >> config.new | |
337 | echo '#endif /* GAS_VERSION */' >> config.new | |
fc00f451 KR |
338 | $(srcdir)/../move-if-change config.new config.h |
339 | touch config-stamp | |
340 | ||
fecd2382 RP |
341 | # Compiling object files from source files. |
342 | ||
833c46e1 | 343 | TARG_CPU_DEP_a29k = |
9591ad40 ILT |
344 | TARG_CPU_DEP_alpha = $(srcdir)/../include/opcode/alpha.h subsegs.h \ |
345 | $(srcdir)/../include/obstack.h | |
833c46e1 | 346 | # start-sanitize-arc |
9591ad40 ILT |
347 | TARG_CPU_DEP_arc = $(srcdir)/../include/opcode/arc.h subsegs.h \ |
348 | $(srcdir)/../include/obstack.h | |
833c46e1 | 349 | # end-sanitize-arc |
9591ad40 | 350 | TARG_CPU_DEP_arm = subsegs.h $(srcdir)/../include/obstack.h |
833c46e1 KR |
351 | TARG_CPU_DEP_generic = |
352 | TARG_CPU_DEP_h8300 = $(srcdir)/../include/opcode/h8300.h | |
9591ad40 ILT |
353 | TARG_CPU_DEP_h8500 = $(srcdir)/../opcodes/h8500-opc.h subsegs.h \ |
354 | $(srcdir)/../include/obstack.h | |
355 | TARG_CPU_DEP_hppa = subsegs.h $(srcdir)/../include/obstack.h | |
356 | TARG_CPU_DEP_i386 = $(srcdir)/../include/opcode/i386.h subsegs.h \ | |
357 | $(srcdir)/../include/obstack.h | |
833c46e1 KR |
358 | TARG_CPU_DEP_i860 = |
359 | TARG_CPU_DEP_i960 = | |
a1c7c0f3 | 360 | TARG_CPU_DEP_m68k = $(srcdir)/../include/opcode/m68k.h \ |
9591ad40 ILT |
361 | $(srcdir)/config/m68k-parse.h subsegs.h \ |
362 | $(srcdir)/../include/obstack.h | |
363 | TARG_CPU_DEP_m88k = $(srcdir)/config/m88k-opcode.h subsegs.h \ | |
364 | $(srcdir)/../include/obstack.h | |
365 | TARG_CPU_DEP_mips = $(srcdir)/../include/opcode/mips.h subsegs.h \ | |
366 | $(srcdir)/../include/obstack.h \ | |
034988c6 | 367 | $(srcdir)/config/itbl-mips.h $(srcdir)/itbl-ops.h |
833c46e1 | 368 | TARG_CPU_DEP_ns32k = |
9591ad40 ILT |
369 | TARG_CPU_DEP_ppc = subsegs.h $(srcdir)/../include/obstack.h |
370 | TARG_CPU_DEP_sh = $(srcdir)/../opcodes/sh-opc.h subsegs.h \ | |
371 | $(srcdir)/../include/obstack.h | |
372 | TARG_CPU_DEP_sparc = subsegs.h $(srcdir)/../include/opcode/sparc.h \ | |
373 | $(srcdir)/../include/obstack.h | |
833c46e1 KR |
374 | TARG_CPU_DEP_tahoe = |
375 | TARG_CPU_DEP_vax = | |
9591ad40 ILT |
376 | TARG_CPU_DEP_w65 = $(srcdir)/../opcodes/w65-opc.h subsegs.h \ |
377 | $(srcdir)/../include/obstack.h | |
833c46e1 KR |
378 | TARG_CPU_DEP_z8k = $(srcdir)/../opcodes/z8k-opc.h |
379 | ||
7e047ac2 ILT |
380 | gasp.o : gasp.c sb.h macro.h config.h |
381 | sb.o : sb.c sb.h config.h | |
382 | macro.o : macro.c macro.h sb.h hash.h config.h | |
84951544 | 383 | app.o : app.c write.h |
9591ad40 ILT |
384 | as.o : as.c output-file.h write.h subsegs.h sb.h macro.h \ |
385 | $(srcdir)/../include/obstack.h | |
84951544 KR |
386 | atof-generic.o : atof-generic.c |
387 | bignum-copy.o : bignum-copy.c | |
9591ad40 ILT |
388 | cond.o : cond.c $(srcdir)/../include/obstack.h |
389 | debug.o : debug.c subsegs.h $(srcdir)/../include/obstack.h | |
390 | expr.o : expr.c $(srcdir)/../include/obstack.h | |
84951544 KR |
391 | flonum-konst.o : flonum-konst.c |
392 | flonum-copy.o : flonum-copy.c | |
393 | flonum-mult.o : flonum-mult.c | |
9591ad40 | 394 | frags.o : frags.c subsegs.h $(srcdir)/../include/obstack.h |
84951544 | 395 | hash.o : hash.c |
84951544 | 396 | input-file.o : input-file.c input-file.h |
7e047ac2 | 397 | input-scrub.o : input-scrub.c input-file.h sb.h |
9591ad40 ILT |
398 | listing.o : listing.c input-file.h subsegs.h $(srcdir)/../include/obstack.h |
399 | literal.o : literal.c subsegs.h $(srcdir)/../include/obstack.h | |
84951544 KR |
400 | messages.o : messages.c |
401 | output-file.o : output-file.c output-file.h | |
9591ad40 ILT |
402 | read.o : read.c sb.h macro.h $(srcdir)/../include/obstack.h |
403 | subsegs.o : subsegs.c subsegs.h $(srcdir)/../include/obstack.h | |
404 | symbols.o : symbols.c subsegs.h $(srcdir)/../include/obstack.h | |
405 | write.o : write.c subsegs.h output-file.h $(srcdir)/../include/obstack.h | |
84951544 KR |
406 | ecoff.o : ecoff.c ecoff.h \ |
407 | $(srcdir)/../include/coff/internal.h $(srcdir)/../include/coff/sym.h \ | |
408 | $(srcdir)/../include/coff/ecoff.h \ | |
409 | $(srcdir)/../include/coff/symconst.h \ | |
410 | $(srcdir)/../include/aout/stab_gnu.h | |
9591ad40 ILT |
411 | stabs.o : stabs.c subsegs.h $(srcdir)/../include/aout/stab_gnu.h \ |
412 | $(srcdir)/../include/obstack.h | |
84951544 KR |
413 | atof-targ.o : atof-targ.c |
414 | obj-format.o : obj-format.c | |
efec4a28 | 415 | targ-cpu.o : targ-cpu.c $(TARG_CPU_DEP_@target_cpu_type@) $(IT_HDRS) |
d1a9e594 | 416 | |
816a827b ILT |
417 | obj-elf.o : $(srcdir)/config/obj-elf.c |
418 | $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/config/obj-elf.c | |
419 | obj-ecoff.o : $(srcdir)/config/obj-ecoff.c | |
420 | $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/config/obj-ecoff.c | |
034988c6 ILT |
421 | obj-coff.o: $(srcdir)/config/obj-coff.c |
422 | $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/config/obj-coff.c | |
816a827b ILT |
423 | |
424 | e-mipself.o : $(srcdir)/config/e-mipself.c | |
425 | $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/config/e-mipself.c | |
426 | e-mipsecoff.o : $(srcdir)/config/e-mipsecoff.c | |
427 | $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/config/e-mipsecoff.c | |
034988c6 ILT |
428 | e-i386coff.o: $(srcdir)/config/e-i386coff.c |
429 | $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/config/e-i386coff.c | |
430 | e-i386elf.o: $(srcdir)/config/e-i386elf.c | |
431 | $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/config/e-i386elf.c | |
816a827b | 432 | |
a1c7c0f3 ILT |
433 | # The m68k operand parser. |
434 | ||
435 | m68k-parse.c: $(srcdir)/config/m68k-parse.y | |
436 | $(BISON) $(BISONFLAGS) $(srcdir)/config/m68k-parse.y | |
437 | mv -f y.tab.c m68k-parse.c | |
336435bc | 438 | m68k-parse.o: m68k-parse.c $(srcdir)/config/m68k-parse.h |
a1c7c0f3 | 439 | |
efec4a28 DP |
440 | |
441 | # The instruction table specification lexical analyzer and parser. | |
442 | ||
443 | itbl-cpu.h : $(srcdir)/config/itbl-@[email protected] | |
444 | itbl-parse.h : $(srcdir)/itbl-parse.y | |
445 | itbl-parse.c : $(srcdir)/itbl-parse.y | |
446 | itbl-lex.c : $(srcdir)/itbl-lex.l | |
447 | ||
448 | itbl-lex.c: $(srcdir)/itbl-lex.l | |
449 | $(LEX) $(LEXFLAGS) $(srcdir)/itbl-lex.l | |
450 | mv -f lex.yy.c itbl-lex.c | |
451 | ||
034988c6 | 452 | itbl-lex.o: itbl-lex.c itbl-parse.h |
ee5cb7fe | 453 | $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) itbl-lex.c |
efec4a28 DP |
454 | |
455 | itbl-parse.c itbl-parse.h: $(srcdir)/itbl-parse.y | |
ef014e09 | 456 | $(BISON) -d $(BISONFLAGS) $(srcdir)/itbl-parse.y |
efec4a28 DP |
457 | mv -f y.tab.c itbl-parse.c |
458 | mv -f y.tab.h itbl-parse.h | |
459 | ||
ee5cb7fe ILT |
460 | itbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h |
461 | $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) itbl-parse.c | |
efec4a28 | 462 | |
034988c6 | 463 | itbl-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h |
efec4a28 DP |
464 | $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/itbl-ops.c |
465 | ||
f9f0539f | 466 | # stand-alone itbl assembler & disassembler |
efec4a28 | 467 | itbl-test-ops.o: $(srcdir)/itbl-ops.c \ |
ee5cb7fe | 468 | $(srcdir)/itbl-ops.h itbl-parse.h |
efec4a28 DP |
469 | $(CC) -o itbl-test-ops.o -DSTAND_ALONE -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/itbl-ops.c |
470 | ||
ee5cb7fe | 471 | itbl-test.o: $(srcdir)/testsuite/gas/all/itbl-test.c $(srcdir)/itbl-ops.h |
f9f0539f DP |
472 | $(CC) -c -DSTAND_ALONE $(ALL_CFLAGS) $(INCLUDES)\ |
473 | $(srcdir)/testsuite/gas/all/itbl-test.c | |
efec4a28 DP |
474 | |
475 | IT_TEST_OBJS= itbl-parse.o itbl-lex.o itbl-test-ops.o | |
476 | itbl-test: $(IT_TEST_OBJS) itbl-test.o $(LIBDEPS) | |
477 | $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o itbl-test itbl-test.o $(IT_TEST_OBJS) $(LIBS) | |
478 | ||
479 | # target itbl definitions for configuring coprocessor itbl support. | |
480 | # configure should have taken care of this for us... | |
481 | itbl-cpu.h: $(srcdir)/config/itbl-@[email protected] | |
482 | ln -s $(srcdir)/config/itbl-@[email protected] itbl-cpu.h | |
483 | ||
484 | ||
fecd2382 RP |
485 | # Remake the info files. |
486 | ||
921faa52 | 487 | doc: $(srcdir)/as.info |
fecd2382 | 488 | |
921faa52 | 489 | $(srcdir)/as.info: $(srcdir)/doc/as.texinfo |
c97b9003 | 490 | @(cd doc; $(MAKE) $(FLAGS_TO_PASS) as.info; mv as.info $srcdir) |
fecd2382 | 491 | |
b1986513 | 492 | diststuff: $(DISTSTUFF) info |
367d6244 | 493 | |
7420b02b | 494 | clean-here: |
f2889110 | 495 | -rm -f $(STAGESTUFF) core stamp-mk.com |
b1986513 KR |
496 | -rm -f testsuite/*.o testsuite/*.out \ |
497 | testsuite/gas.log testsuite/gas.sum testsuite/site.exp | |
fecd2382 | 498 | |
daa7e184 ILT |
499 | clean mostlyclean: clean-here |
500 | @cd doc ; $(MAKE) $(FLAGS_TO_PASS) $@ | |
7420b02b | 501 | |
fecd2382 | 502 | # Like clean but also delete the links made to configure gas. |
011d16ac ILT |
503 | |
504 | DISTCLEAN_HERE = config.status Makefile targ-env.h targ-cpu.h \ | |
505 | targ-cpu.c obj-format.h obj-format.c atof-targ.c TAGS \ | |
efec4a28 | 506 | atof-targ.h itbl-cpu.h \ |
011d16ac ILT |
507 | config-stamp config.h conf config.log config.cache .gdbinit \ |
508 | testsuite/Makefile testsuite/config.status | |
509 | ||
367d6244 | 510 | distclean: clean-here |
daa7e184 | 511 | @cd doc ; $(MAKE) $(FLAGS_TO_PASS) $@ |
011d16ac ILT |
512 | -rm -f $(DISTCLEAN_HERE) |
513 | ||
514 | maintainer-clean realclean: clean-here | |
6b0a6eaa KR |
515 | @echo "This command is intended for maintainers to use;" |
516 | @echo "it deletes files that may require special tools to rebuild." | |
011d16ac ILT |
517 | @cd doc ; $(MAKE) $(FLAGS_TO_PASS) $@ |
518 | -rm -rf $(DISTCLEAN_HERE) $(DISTSTUFF) | |
542e1629 | 519 | |
fecd2382 RP |
520 | # Entry points `install', `includes' and `uninstall'. |
521 | ||
522 | # Copy the files into directories where they will be run. | |
542e1629 | 523 | install: |
7420b02b | 524 | srcroot=`cd $(srcroot); pwd`; export srcroot; \ |
c97b9003 | 525 | $(INSTALL_XFORM) as.new $(bindir)/as; \ |
7420b02b | 526 | $(INSTALL_XFORM1) $(srcdir)/doc/as.1 $(man1dir)/as.1; \ |
1c94de4d JM |
527 | test -d $(tooldir) || mkdir $(tooldir); \ |
528 | test -d $(tooldir)/bin || mkdir $(tooldir)/bin; \ | |
28d3e4a3 | 529 | n=`echo as | sed '$(program_transform_name)'`; \ |
1c94de4d JM |
530 | rm -f $(tooldir)/bin/as; \ |
531 | ln $(bindir)/$$n $(tooldir)/bin/as >/dev/null 2>/dev/null \ | |
532 | || $(INSTALL_PROGRAM) as.new $(tooldir)/bin/as | |
a5a4b5ac | 533 | srcroot=`cd $(srcroot); pwd`; export srcroot; \ |
138b11d8 | 534 | $(INSTALL_XFORM) gasp.new $(bindir)/gasp |
fecd2382 | 535 | |
fecd2382 RP |
536 | # Cancel installation by deleting the installed files. |
537 | uninstall: | |
fa156ffe | 538 | -n=`t='$(program_transform_name)'; echo as | sed $$t`; \ |
7e10f53c ILT |
539 | rm -f $(bindir)/$$n; \ |
540 | rm -f $(mandir)/$$n.1 | |
fa156ffe | 541 | -n=`t='$(program_transform_name)'; echo gasp | sed $$t`; \ |
a5a4b5ac | 542 | rm -f $(bindir)/$$n; \ |
542e1629 | 543 | |
fecd2382 RP |
544 | # These exist for maintenance purposes. |
545 | ||
546 | tags TAGS: force | |
787c6bfe | 547 | etags $(REAL_HEADERS) $(REAL_SOURCES) $(srcdir)/config/*.[hc] $(srcdir)/README $(srcdir)/Makefile.in |
ac7f7dfe | 548 | |
542e1629 | 549 | bootstrap: as.new force |
fecd2382 | 550 | $(MAKE) stage1 |
3256c4b5 KR |
551 | rm -f stage && ln -s stage1 stage |
552 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new | |
fecd2382 | 553 | $(MAKE) stage2 |
3256c4b5 KR |
554 | rm -f stage && ln -s stage2 stage |
555 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new | |
a01bf1fb | 556 | $(MAKE) comparison against=stage2 |
fecd2382 RP |
557 | |
558 | bootstrap2: force | |
3256c4b5 KR |
559 | rm -f stage && ln -s stage1 stage |
560 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new | |
fecd2382 | 561 | $(MAKE) stage2 |
3256c4b5 KR |
562 | rm -f stage && ln -s stage2 stage |
563 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new | |
da0b2bff | 564 | $(MAKE) comparison against=stage2 |
fecd2382 RP |
565 | |
566 | bootstrap3: force | |
3256c4b5 KR |
567 | rm -f stage && ln -s stage2 stage |
568 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new | |
a01bf1fb | 569 | $(MAKE) comparison against=stage2 |
fecd2382 RP |
570 | |
571 | # Copy the object files from a particular stage into a subdirectory. | |
572 | stage1: force | |
573 | -mkdir stage1 | |
574 | -mv $(STAGESTUFF) stage1 | |
81f73963 | 575 | if [ -f stage1/as.new -a ! -f stage1/as ] ; then (cd stage1 ; ln -s as.new as) ; fi |
fecd2382 RP |
576 | |
577 | stage2: force | |
578 | -mkdir stage2 | |
579 | -mv $(STAGESTUFF) stage2 | |
81f73963 | 580 | if [ -f stage2/as.new -a ! -f stage2/as ] ; then (cd stage2 ; ln -s as.new as) ; fi |
fecd2382 RP |
581 | |
582 | stage3: force | |
583 | -mkdir stage3 | |
6a3958b2 | 584 | -mv $(STAGESTUFF) stage3 |
81f73963 | 585 | if [ -f stage3/as.new -a ! -f stage3/as ] ; then (cd stage3 ; ln -s as.new as) ; fi |
fecd2382 | 586 | |
a01bf1fb RP |
587 | against=stage2 |
588 | ||
f2889110 KR |
589 | # This rule is derived from corresponding code in the Makefile.in for gcc. |
590 | # The "tail +16c" is to bypass headers which may include timestamps or | |
591 | # temporary assembly file names. | |
a01bf1fb | 592 | comparison: force |
f2889110 | 593 | x=0 ; \ |
6b0a6eaa | 594 | for file in *.o ; do \ |
f2889110 KR |
595 | tail +16c ./$$file > tmp-foo1; \ |
596 | if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \ | |
597 | if cmp tmp-foo1 tmp-foo2 ; then \ | |
598 | true ; \ | |
599 | else \ | |
600 | echo $$file differs ; \ | |
601 | x=1 ; \ | |
602 | fi ; \ | |
603 | else true; fi ; \ | |
604 | done ; \ | |
605 | exit $$x | |
606 | -rm -f tmp-foo* | |
a01bf1fb | 607 | |
6a3958b2 | 608 | de-stage1: force |
b3cd8555 | 609 | - (cd stage1 ; rm -f as ; mv -f * ..) |
6a3958b2 RP |
610 | - rmdir stage1 |
611 | ||
612 | de-stage2: force | |
b3cd8555 | 613 | - (cd stage2 ; rm -f as ; mv -f * ..) |
6a3958b2 RP |
614 | - rmdir stage2 |
615 | ||
616 | de-stage3: force | |
b3cd8555 | 617 | - (cd stage3 ; rm -f as ; mv -f * ..) |
6a3958b2 | 618 | - rmdir stage3 |
fecd2382 | 619 | |
fecd2382 | 620 | #In GNU Make, ignore whether `stage*' exists. |
daa7e184 ILT |
621 | .PHONY: stage1 stage2 stage3 stage4 clean mostlyclean realclean distclean |
622 | .PHONY: TAGS bootstrap | |
fecd2382 RP |
623 | |
624 | force: | |
625 | ||
fc00f451 | 626 | Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) \ |
a1c7c0f3 | 627 | $(srcdir)/configure.in config.status conf.in |
a26878d1 | 628 | $(SHELL) ./config.status |
1df6e266 KR |
629 | .gdbinit: $(srcdir)/gdbinit.in config.status |
630 | $(SHELL) ./config.status |