Commit | Line | Data |
---|---|---|
252b5132 | 1 | ## Process this file with automake to generate Makefile.in |
5bf135a7 | 2 | # |
6f2750fe | 3 | # Copyright (C) 2012-2016 Free Software Foundation, Inc. |
5bf135a7 NC |
4 | # |
5 | # This file 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 3 of the License, or | |
8 | # (at your option) any later version. | |
f2c7d7ee | 9 | # |
5bf135a7 NC |
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. | |
f2c7d7ee | 14 | # |
5bf135a7 NC |
15 | # You should have received a copy of the GNU General Public License |
16 | # along with this program; see the file COPYING3. If not see | |
17 | # <http://www.gnu.org/licenses/>. | |
18 | # | |
252b5132 | 19 | |
a5c7551f | 20 | AUTOMAKE_OPTIONS = 1.11 dejagnu foreign no-dist |
79887925 | 21 | ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd |
252b5132 RH |
22 | |
23 | SUBDIRS = doc po | |
24 | ||
25 | tooldir = $(exec_prefix)/$(target_alias) | |
26 | ||
0138187e L |
27 | # This is where we get zlib from. zlibdir is -L../zlib and zlibinc is |
28 | # -I../zlib, unless we were configured with --with-system-zlib, in which | |
29 | # case both are empty. | |
30 | ZLIBINC = @zlibinc@ | |
31 | ||
9c46fb1b AM |
32 | YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo @YACC@ ; fi` |
33 | LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo @LEX@ ; fi` | |
252b5132 | 34 | |
a15af8e2 RW |
35 | # Automake 1.10+ disables lex and yacc output file regeneration if |
36 | # maintainer mode is disabled. Avoid this. | |
37 | am__skiplex = | |
38 | am__skipyacc = | |
39 | ||
6757cf57 | 40 | WARN_CFLAGS = @WARN_CFLAGS@ @WARN_WRITE_STRINGS@ |
9e9b66a9 | 41 | NO_WERROR = @NO_WERROR@ |
0138187e | 42 | AM_CFLAGS = $(WARN_CFLAGS) $(ZLIBINC) |
a2d91340 | 43 | |
252b5132 RH |
44 | TARG_CPU = @target_cpu_type@ |
45 | TARG_CPU_C = $(srcdir)/config/tc-@target_cpu_type@.c | |
52a6ecd2 | 46 | TARG_CPU_O = tc-@target_cpu_type@.@OBJEXT@ |
252b5132 RH |
47 | TARG_CPU_H = $(srcdir)/config/tc-@target_cpu_type@.h |
48 | OBJ_FORMAT_C = $(srcdir)/config/obj-@obj_format@.c | |
52a6ecd2 | 49 | OBJ_FORMAT_O = obj-@obj_format@.@OBJEXT@ |
252b5132 RH |
50 | OBJ_FORMAT_H = $(srcdir)/config/obj-@obj_format@.h |
51 | TARG_ENV_H = $(srcdir)/config/te-@te_file@.h | |
52 | ATOF_TARG_C = $(srcdir)/config/atof-@atof@.c | |
52a6ecd2 | 53 | ATOF_TARG_O = atof-@atof@.@OBJEXT@ |
252b5132 RH |
54 | |
55 | # use @target_cpu_type@ for refering to configured target name | |
12e64c2c | 56 | IT_HDRS=itbl-parse.h $(srcdir)/itbl-ops.h |
df7b86aa | 57 | IT_SRCS=itbl-parse.c itbl-lex-wrapper.c $(srcdir)/itbl-ops.c |
252b5132 | 58 | IT_DEPS=$(srcdir)/itbl-parse.y $(srcdir)/itbl-lex.l $(srcdir)/config/itbl-@target_cpu_type@.h |
52a6ecd2 | 59 | IT_OBJS=itbl-parse.@OBJEXT@ itbl-lex.@OBJEXT@ itbl-ops.@OBJEXT@ |
252b5132 | 60 | |
252b5132 RH |
61 | |
62 | # Regular source files. | |
63 | ||
64 | GAS_CFILES = \ | |
65 | app.c \ | |
66 | as.c \ | |
67 | atof-generic.c \ | |
0acf065b | 68 | compress-debug.c \ |
252b5132 RH |
69 | cond.c \ |
70 | depend.c \ | |
fac0d250 | 71 | dwarf2dbg.c \ |
54cfded0 | 72 | dw2gencfi.c \ |
252b5132 RH |
73 | ecoff.c \ |
74 | ehopt.c \ | |
75 | expr.c \ | |
76 | flonum-copy.c \ | |
77 | flonum-konst.c \ | |
78 | flonum-mult.c \ | |
79 | frags.c \ | |
80 | hash.c \ | |
81 | input-file.c \ | |
82 | input-scrub.c \ | |
83 | listing.c \ | |
84 | literal.c \ | |
85 | macro.c \ | |
86 | messages.c \ | |
87 | output-file.c \ | |
88 | read.c \ | |
3d6b762c | 89 | remap.c \ |
252b5132 RH |
90 | sb.c \ |
91 | stabs.c \ | |
92 | subsegs.c \ | |
93 | symbols.c \ | |
94 | write.c | |
95 | ||
bd3ba5d1 | 96 | CFILES = $(GAS_CFILES) itbl-ops.c cgen.c |
252b5132 RH |
97 | |
98 | HFILES = \ | |
99 | as.h \ | |
100 | asintl.h \ | |
101 | bignum.h \ | |
102 | bit_fix.h \ | |
103 | cgen.h \ | |
0acf065b | 104 | compress-debug.h \ |
fac0d250 | 105 | dwarf2dbg.h \ |
54cfded0 | 106 | dw2gencfi.h \ |
252b5132 RH |
107 | ecoff.h \ |
108 | emul-target.h \ | |
109 | emul.h \ | |
110 | expr.h \ | |
111 | flonum.h \ | |
112 | frags.h \ | |
113 | hash.h \ | |
114 | input-file.h \ | |
b16b813f | 115 | itbl-lex.h \ |
252b5132 RH |
116 | itbl-ops.h \ |
117 | listing.h \ | |
118 | macro.h \ | |
119 | obj.h \ | |
120 | output-file.h \ | |
121 | read.h \ | |
122 | sb.h \ | |
123 | struc-symbol.h \ | |
124 | subsegs.h \ | |
125 | symbols.h \ | |
126 | tc.h \ | |
127 | write.h | |
128 | ||
129 | # CPU files in config. | |
130 | ||
131 | TARGET_CPU_CFILES = \ | |
a06ea964 | 132 | config/tc-aarch64.c \ |
252b5132 RH |
133 | config/tc-alpha.c \ |
134 | config/tc-arc.c \ | |
135 | config/tc-arm.c \ | |
ec694b89 | 136 | config/tc-avr.c \ |
07c1b327 | 137 | config/tc-bfin.c \ |
3d3d428f | 138 | config/tc-cr16.c \ |
3bcbcc3d | 139 | config/tc-cris.c \ |
1fe1f39c | 140 | config/tc-crx.c \ |
252b5132 RH |
141 | config/tc-d10v.c \ |
142 | config/tc-d30v.c \ | |
d172d4ba | 143 | config/tc-dlx.c \ |
cfb8c092 | 144 | config/tc-epiphany.c \ |
a4835b42 | 145 | config/tc-fr30.c \ |
0ebb9a87 | 146 | config/tc-frv.c \ |
3f8107ab | 147 | config/tc-ft32.c \ |
252b5132 | 148 | config/tc-h8300.c \ |
252b5132 | 149 | config/tc-hppa.c \ |
800eeca4 | 150 | config/tc-ia64.c \ |
5b93d8bb | 151 | config/tc-i370.c \ |
252b5132 RH |
152 | config/tc-i386.c \ |
153 | config/tc-i860.c \ | |
154 | config/tc-i960.c \ | |
a40cbfa3 | 155 | config/tc-ip2k.c \ |
bd3ba5d1 | 156 | config/tc-iq2000.c \ |
84e94c90 | 157 | config/tc-lm32.c \ |
49f58d10 | 158 | config/tc-m32c.c \ |
252b5132 | 159 | config/tc-m32r.c \ |
60bcf0fa | 160 | config/tc-m68hc11.c \ |
252b5132 | 161 | config/tc-m68k.c \ |
252b5132 | 162 | config/tc-mcore.c \ |
280d71bf | 163 | config/tc-mep.c \ |
a3c62988 | 164 | config/tc-metag.c \ |
7ba29e2a | 165 | config/tc-microblaze.c \ |
252b5132 | 166 | config/tc-mips.c \ |
3c3bdf30 | 167 | config/tc-mmix.c \ |
252b5132 RH |
168 | config/tc-mn10200.c \ |
169 | config/tc-mn10300.c \ | |
2cbd2211 | 170 | config/tc-moxie.c \ |
2469cfa2 | 171 | config/tc-msp430.c \ |
bd3ba5d1 | 172 | config/tc-mt.c \ |
35c08157 | 173 | config/tc-nds32.c \ |
36591ba1 | 174 | config/tc-nios2.c \ |
252b5132 | 175 | config/tc-ns32k.c \ |
73589c9d | 176 | config/tc-or1k.c \ |
e135f41b | 177 | config/tc-pdp11.c \ |
041dd5a9 | 178 | config/tc-pj.c \ |
252b5132 | 179 | config/tc-ppc.c \ |
99c513f6 | 180 | config/tc-rl78.c \ |
c7927a3c | 181 | config/tc-rx.c \ |
a85d7ed0 | 182 | config/tc-s390.c \ |
1c0d3aa6 | 183 | config/tc-score.c \ |
252b5132 | 184 | config/tc-sh.c \ |
324bfcf3 | 185 | config/tc-sh64.c \ |
252b5132 | 186 | config/tc-sparc.c \ |
e9f53129 | 187 | config/tc-spu.c \ |
252b5132 | 188 | config/tc-tic30.c \ |
bd3ba5d1 | 189 | config/tc-tic4x.c \ |
39bec121 | 190 | config/tc-tic54x.c \ |
40b36596 | 191 | config/tc-tic6x.c \ |
aa137e4d NC |
192 | config/tc-tilegx.c \ |
193 | config/tc-tilepro.c \ | |
252b5132 | 194 | config/tc-v850.c \ |
b6605ddd EB |
195 | config/tc-vax.c \ |
196 | config/tc-visium.c \ | |
93fbbb04 | 197 | config/tc-xstormy16.c \ |
d70c5fc7 | 198 | config/tc-xc16x.c \ |
f6c1a2d5 | 199 | config/tc-xgate.c \ |
e0001a05 | 200 | config/tc-xtensa.c \ |
3c9b82ba | 201 | config/tc-z80.c \ |
bd3ba5d1 NC |
202 | config/tc-z8k.c \ |
203 | config/xtensa-relax.c | |
252b5132 RH |
204 | |
205 | TARGET_CPU_HFILES = \ | |
a06ea964 | 206 | config/tc-aarch64.h \ |
252b5132 RH |
207 | config/tc-alpha.h \ |
208 | config/tc-arc.h \ | |
209 | config/tc-arm.h \ | |
ec694b89 | 210 | config/tc-avr.h \ |
07c1b327 | 211 | config/tc-bfin.h \ |
3d3d428f | 212 | config/tc-cr16.h \ |
3bcbcc3d | 213 | config/tc-cris.h \ |
1fe1f39c | 214 | config/tc-crx.h \ |
252b5132 RH |
215 | config/tc-d10v.h \ |
216 | config/tc-d30v.h \ | |
d172d4ba | 217 | config/tc-dlx.h \ |
cfb8c092 | 218 | config/tc-epiphany.h \ |
a4835b42 | 219 | config/tc-fr30.h \ |
0ebb9a87 | 220 | config/tc-frv.h \ |
3f8107ab | 221 | config/tc-ft32.h \ |
252b5132 | 222 | config/tc-h8300.h \ |
252b5132 | 223 | config/tc-hppa.h \ |
800eeca4 | 224 | config/tc-ia64.h \ |
5b93d8bb | 225 | config/tc-i370.h \ |
252b5132 RH |
226 | config/tc-i386.h \ |
227 | config/tc-i860.h \ | |
228 | config/tc-i960.h \ | |
a40cbfa3 | 229 | config/tc-ip2k.h \ |
bd3ba5d1 | 230 | config/tc-iq2000.h \ |
84e94c90 | 231 | config/tc-lm32.h \ |
49f58d10 | 232 | config/tc-m32c.h \ |
252b5132 | 233 | config/tc-m32r.h \ |
60bcf0fa | 234 | config/tc-m68hc11.h \ |
252b5132 | 235 | config/tc-m68k.h \ |
252b5132 | 236 | config/tc-mcore.h \ |
280d71bf | 237 | config/tc-mep.h \ |
a3c62988 | 238 | config/tc-metag.h \ |
7ba29e2a | 239 | config/tc-microblaze.h \ |
252b5132 | 240 | config/tc-mips.h \ |
3c3bdf30 | 241 | config/tc-mmix.h \ |
252b5132 RH |
242 | config/tc-mn10200.h \ |
243 | config/tc-mn10300.h \ | |
2469cfa2 | 244 | config/tc-msp430.h \ |
bd3ba5d1 | 245 | config/tc-mt.h \ |
35c08157 | 246 | config/tc-nds32.h \ |
36591ba1 | 247 | config/tc-nios2.h \ |
252b5132 | 248 | config/tc-ns32k.h \ |
73589c9d | 249 | config/tc-or1k.h \ |
e135f41b | 250 | config/tc-pdp11.h \ |
041dd5a9 | 251 | config/tc-pj.h \ |
252b5132 | 252 | config/tc-ppc.h \ |
99c513f6 | 253 | config/tc-rl78.h \ |
c7927a3c | 254 | config/tc-rx.h \ |
a85d7ed0 | 255 | config/tc-s390.h \ |
1c0d3aa6 | 256 | config/tc-score.h \ |
252b5132 | 257 | config/tc-sh.h \ |
324bfcf3 | 258 | config/tc-sh64.h \ |
252b5132 | 259 | config/tc-sparc.h \ |
e9f53129 | 260 | config/tc-spu.h \ |
252b5132 | 261 | config/tc-tic30.h \ |
bd3ba5d1 | 262 | config/tc-tic4x.h \ |
39bec121 | 263 | config/tc-tic54x.h \ |
40b36596 | 264 | config/tc-tic6x.h \ |
aa137e4d NC |
265 | config/tc-tilegx.h \ |
266 | config/tc-tilepro.h \ | |
252b5132 | 267 | config/tc-v850.h \ |
b6605ddd EB |
268 | config/tc-vax.h \ |
269 | config/tc-visium.h \ | |
93fbbb04 | 270 | config/tc-xstormy16.h \ |
d70c5fc7 | 271 | config/tc-xc16x.h \ |
f6c1a2d5 | 272 | config/tc-xgate.h \ |
e0001a05 | 273 | config/tc-xtensa.h \ |
3c9b82ba | 274 | config/tc-z80.h \ |
bd3ba5d1 NC |
275 | config/tc-z8k.h \ |
276 | config/xtensa-relax.h | |
252b5132 RH |
277 | |
278 | # OBJ files in config | |
279 | ||
280 | OBJ_FORMAT_CFILES = \ | |
281 | config/obj-aout.c \ | |
252b5132 RH |
282 | config/obj-coff.c \ |
283 | config/obj-ecoff.c \ | |
284 | config/obj-elf.c \ | |
285 | config/obj-evax.c \ | |
fe4fa32c | 286 | config/obj-fdpicelf.c \ |
e57f8c65 | 287 | config/obj-macho.c \ |
a5c7551f | 288 | config/obj-multi.c \ |
ec91a2c2 | 289 | config/obj-som.c |
252b5132 RH |
290 | |
291 | OBJ_FORMAT_HFILES = \ | |
292 | config/obj-aout.h \ | |
252b5132 RH |
293 | config/obj-coff.h \ |
294 | config/obj-ecoff.h \ | |
295 | config/obj-elf.h \ | |
296 | config/obj-evax.h \ | |
fe4fa32c | 297 | config/obj-fdpicelf.h \ |
e57f8c65 | 298 | config/obj-macho.h \ |
a5c7551f | 299 | config/obj-multi.h \ |
ec91a2c2 | 300 | config/obj-som.h |
252b5132 RH |
301 | |
302 | # Emulation header files in config | |
303 | ||
304 | TARG_ENV_HFILES = \ | |
305 | config/te-386bsd.h \ | |
bd3ba5d1 NC |
306 | config/te-aix5.h \ |
307 | config/te-armeabi.h \ | |
37186264 | 308 | config/te-armfbsdeabi.h \ |
f7f2534e | 309 | config/te-armfbsdvfp.h \ |
c820d418 | 310 | config/te-armlinuxeabi.h \ |
252b5132 | 311 | config/te-dynix.h \ |
a4835b42 | 312 | config/te-epoc-pe.h \ |
bd3ba5d1 | 313 | config/te-freebsd.h \ |
252b5132 | 314 | config/te-generic.h \ |
bd3ba5d1 | 315 | config/te-gnu.h \ |
252b5132 | 316 | config/te-go32.h \ |
252b5132 | 317 | config/te-hppa.h \ |
3438adb3 AM |
318 | config/te-hppa64.h \ |
319 | config/te-hppalinux64.h \ | |
252b5132 | 320 | config/te-i386aix.h \ |
7463c317 | 321 | config/te-ia64aix.h \ |
bd3ba5d1 | 322 | config/te-interix.h \ |
252b5132 RH |
323 | config/te-lynx.h \ |
324 | config/te-mach.h \ | |
325 | config/te-macos.h \ | |
252b5132 RH |
326 | config/te-nbsd.h \ |
327 | config/te-nbsd532.h \ | |
32137342 | 328 | config/te-netware.h \ |
252b5132 RH |
329 | config/te-pc532mach.h \ |
330 | config/te-pe.h \ | |
252b5132 RH |
331 | config/te-psos.h \ |
332 | config/te-riscix.h \ | |
2774199c | 333 | config/te-solaris.h \ |
252b5132 RH |
334 | config/te-sparcaout.h \ |
335 | config/te-sun3.h \ | |
336 | config/te-svr4.h \ | |
e5a52504 | 337 | config/te-symbian.h \ |
7148cc28 | 338 | config/te-tmips.h \ |
bd3ba5d1 | 339 | config/te-vxworks.h \ |
7148cc28 | 340 | config/te-wince-pe.h |
252b5132 | 341 | |
b11d79f2 TG |
342 | TARG_ENV_CFILES = \ |
343 | config/te-vms.c | |
344 | ||
252b5132 RH |
345 | # Multi files in config |
346 | ||
347 | MULTI_CFILES = \ | |
3bcbcc3d HPN |
348 | config/e-crisaout.c \ |
349 | config/e-criself.c \ | |
4c63da97 | 350 | config/e-i386aout.c \ |
252b5132 RH |
351 | config/e-i386coff.c \ |
352 | config/e-i386elf.c \ | |
252b5132 RH |
353 | config/e-mipself.c |
354 | ||
bd3ba5d1 NC |
355 | CONFIG_ATOF_CFILES = \ |
356 | config/atof-ieee.c \ | |
357 | config/atof-vax.c | |
358 | ||
b11d79f2 TG |
359 | POTFILES = $(MULTI_CFILES) $(CONFIG_ATOF_CFILES) \ |
360 | $(TARG_ENV_HFILES) $(TARG_ENV_CFILES) $(OBJ_FORMAT_HFILES) \ | |
252b5132 | 361 | $(OBJ_FORMAT_CFILES) $(TARGET_CPU_HFILES) $(TARGET_CPU_CFILES) \ |
620c54b3 | 362 | $(HFILES) $(CFILES) |
252b5132 | 363 | po/POTFILES.in: @MAINT@ Makefile |
323ee3f4 | 364 | for f in $(POTFILES); do echo $$f; done | LC_ALL=C sort > tmp \ |
252b5132 RH |
365 | && mv tmp $(srcdir)/po/POTFILES.in |
366 | ||
fea17916 NC |
367 | # Note: GASP is now deprecated and has been removed. It is still |
368 | # available in the CVS archive or older binutils releases if it is needed. | |
3f965e60 | 369 | noinst_PROGRAMS = as-new |
81afc846 ILT |
370 | noinst_SCRIPTS = $(GDBINIT) |
371 | EXTRA_SCRIPTS = .gdbinit | |
252b5132 | 372 | |
07c1b327 | 373 | EXTRA_DIST = m68k-parse.c itbl-parse.c itbl-parse.h itbl-lex.c \ |
c7927a3c | 374 | bfin-parse.c bfin-parse.h bfin-lex.c \ |
99c513f6 | 375 | rl78-parse.c rl78-parse.h \ |
c7927a3c | 376 | rx-parse.c rx-parse.h |
07c1b327 | 377 | |
c45021f2 | 378 | diststuff: $(EXTRA_DIST) info |
252b5132 RH |
379 | |
380 | DISTCLEANFILES = targ-cpu.h obj-format.h targ-env.h itbl-cpu.h cgen-desc.h | |
381 | ||
382 | # Now figure out from those variables how to compile and link. | |
383 | ||
384 | BASEDIR = $(srcdir)/.. | |
385 | BFDDIR = $(BASEDIR)/bfd | |
386 | INCDIR = $(BASEDIR)/include | |
387 | ||
388 | # This is the variable actually used when we compile. | |
389 | # Specify the directories to be searched for header files. | |
390 | # Both . and srcdir are used, in that order, | |
391 | # so that tm.h and config.h will be found in the compilation | |
392 | # subdirectory rather than in the source directory. | |
14ec8efd | 393 | AM_CPPFLAGS = -I. -I$(srcdir) -I../bfd -I$(srcdir)/config \ |
92f01d61 | 394 | -I$(INCDIR) -I$(srcdir)/.. -I$(BFDDIR) @INCINTL@ \ |
92f01d61 | 395 | -DLOCALEDIR="\"$(datadir)/locale\"" |
252b5132 | 396 | |
252b5132 RH |
397 | # How to link with both our special library facilities |
398 | # and the system's installed libraries. | |
399 | ||
03bf704f | 400 | GASLIBS = @OPCODES_LIB@ ../bfd/libbfd.la ../libiberty/libiberty.a |
252b5132 RH |
401 | |
402 | # Files to be copied away after each stage in building. | |
52a6ecd2 | 403 | STAGESTUFF = *.@OBJEXT@ $(noinst_PROGRAMS) |
252b5132 | 404 | |
252b5132 RH |
405 | as_new_SOURCES = $(GAS_CFILES) |
406 | as_new_LDADD = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \ | |
20e95c23 | 407 | $(extra_objects) $(GASLIBS) $(LIBINTL) $(LIBM) |
252b5132 | 408 | as_new_DEPENDENCIES = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \ |
20e95c23 | 409 | $(extra_objects) $(GASLIBS) $(LIBINTL_DEP) |
a5c7551f RW |
410 | EXTRA_as_new_SOURCES = $(CFILES) $(HFILES) $(TARGET_CPU_CFILES) \ |
411 | $(TARGET_CPU_HFILES) $(OBJ_FORMAT_CFILES) $(OBJ_FORMAT_HFILES) \ | |
b11d79f2 | 412 | $(TARG_ENV_CFILES) $(CONFIG_ATOF_CFILES) $(MULTI_CFILES) |
252b5132 | 413 | |
c3298874 BE |
414 | EXPECT = expect |
415 | RUNTEST = runtest | |
252b5132 RH |
416 | RUNTESTFLAGS= |
417 | ||
418 | check-DEJAGNU: site.exp | |
419 | if [ -d testsuite ]; then \ | |
420 | true; \ | |
421 | else \ | |
422 | mkdir testsuite; \ | |
423 | fi | |
424 | rm -f testsuite/site.exp | |
425 | cp site.exp testsuite/site.exp | |
426 | rootme=`pwd`; export rootme; \ | |
427 | srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \ | |
e5b62927 | 428 | LC_ALL=C; export LC_ALL; \ |
252b5132 | 429 | EXPECT=${EXPECT} ; export EXPECT ; \ |
252b5132 RH |
430 | runtest=$(RUNTEST); \ |
431 | cd testsuite; \ | |
432 | if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \ | |
433 | $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \ | |
434 | $(RUNTESTFLAGS); \ | |
435 | else echo "WARNING: could not find \`runtest'" 1>&2; :;\ | |
436 | fi | |
437 | ||
252b5132 RH |
438 | # The m68k operand parser. |
439 | ||
a5c7551f | 440 | EXTRA_as_new_SOURCES += config/m68k-parse.y config/bfin-parse.y |
252b5132 RH |
441 | |
442 | # If m68k-parse.y is in a different directory, then ylwrap will use an | |
443 | # absolute path when it invokes yacc, which will cause yacc to put the | |
444 | # absolute path into the generated file. That's a pain when it comes | |
445 | # to generating snapshots, because it introduces spurious diffs. | |
446 | # Since when we make the snapshots $(srcdir) = ".", we check for that | |
447 | # case and handle it differently. This means that anybody who | |
448 | # configures with $(srcdir) = "." will have to set their path in the | |
449 | # debugger if they want to debug m68k-parse.y. This is bad, but on | |
450 | # the other hand it's good that people who use the prebuilt | |
451 | # m68k-parse.c don't get a spurious absolute path. | |
452 | m68k-parse.c: $(srcdir)/config/m68k-parse.y | |
453 | f=$(srcdir)/config/m68k-parse.y; \ | |
454 | if [ $$f = "./config/m68k-parse.y" ]; then \ | |
455 | ln -s config/m68k-parse.y . > /dev/null 2>/dev/null || \ | |
456 | ln config/m68k-parse.y . > /dev/null 2>/dev/null || \ | |
457 | cp config/m68k-parse.y . >/dev/null 2>/dev/null; \ | |
458 | f=m68k-parse.y; \ | |
459 | else true; fi; \ | |
42ecbf5e | 460 | $(SHELL) $(YLWRAP) $$f y.tab.c m68k-parse.c -- $(YACCCOMPILE); \ |
252b5132 RH |
461 | if [ $$f = "m68k-parse.y" ]; then \ |
462 | rm -f m68k-parse.y; \ | |
463 | else true; fi | |
1a66a017 | 464 | # Disable -Werror, if it has been enabled, since old versions of bison/ |
12e64c2c | 465 | # yacc will produce working code which contain compile time warnings. |
52a6ecd2 | 466 | m68k-parse.@OBJEXT@: m68k-parse.c |
a5c7551f | 467 | if am__fastdepCC |
7bb7d81f | 468 | $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f m68k-parse.c || echo $(srcdir)/`m68k-parse.c $(NO_WERROR) |
a5c7551f RW |
469 | mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po |
470 | else | |
471 | if AMDEP | |
472 | source='m68k-parse.c' object='$@' libtool=no @AMDEPBACKSLASH@ | |
473 | DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
474 | endif | |
7bb7d81f | 475 | $(COMPILE) -c `test -f m68k-parse.c || echo $(srcdir)/`m68k-parse.c $(NO_WERROR) |
a5c7551f | 476 | endif |
252b5132 RH |
477 | |
478 | # Don't let the .y.h rule clobber m68k-parse.h. | |
479 | m68k-parse.h: ; @true | |
480 | $(srcdir)/config/m68k-parse.h: ; @true | |
481 | ||
7c8d43d8 | 482 | bfin-parse.c: $(srcdir)/config/bfin-parse.y |
9ba4c445 | 483 | $(SHELL) $(YLWRAP) $(srcdir)/config/bfin-parse.y y.tab.c bfin-parse.c y.tab.h bfin-parse.h -- $(YACCCOMPILE) -d ; |
7c8d43d8 | 484 | bfin-parse.h: bfin-parse.c |
52a6ecd2 | 485 | bfin-parse.@OBJEXT@: bfin-parse.c \ |
53ae48a2 | 486 | $(srcdir)/config/bfin-aux.h $(srcdir)/config/bfin-defs.h \ |
76e7a751 | 487 | $(INCDIR)/elf/common.h $(INCDIR)/elf/bfin.h |
07c1b327 | 488 | |
53ae48a2 JZ |
489 | bfin-parse.h: ; @true |
490 | $(srcdir)/config/bfin-parse.h: ; @true | |
07c1b327 CM |
491 | |
492 | bfin-lex.c: $(srcdir)/config/bfin-lex.l | |
1e0486ea | 493 | $(SHELL) $(YLWRAP) $(srcdir)/config/bfin-lex.l lex.yy.c bfin-lex.c -- $(LEXCOMPILE) |
df7b86aa | 494 | bfin-lex-wrapper.@OBJEXT@: $(srcdir)/config/bfin-lex-wrapper.c bfin-lex.c bfin-parse.h $(srcdir)/config/bfin-defs.h |
a5c7551f | 495 | if am__fastdepCC |
df7b86aa | 496 | $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/config/bfin-lex-wrapper.c $(NO_WERROR) |
a5c7551f RW |
497 | mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po |
498 | else | |
499 | if AMDEP | |
df7b86aa | 500 | source='bfin-lex-wrapper.c' object='$@' libtool=no @AMDEPBACKSLASH@ |
a5c7551f RW |
501 | DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ |
502 | endif | |
df7b86aa | 503 | $(COMPILE) -c $(srcdir)/config/bfin-lex-wrapper.c $(NO_WERROR) |
a5c7551f | 504 | endif |
07c1b327 | 505 | |
99c513f6 DD |
506 | rl78-parse.c: $(srcdir)/config/rl78-parse.y |
507 | $(SHELL) $(YLWRAP) $(srcdir)/config/rl78-parse.y y.tab.c rl78-parse.c y.tab.h rl78-parse.h -- $(YACCCOMPILE) -d ; | |
508 | rl78-parse.h: rl78-parse.c | |
509 | rl78-parse.@OBJEXT@: rl78-parse.c rl78-parse.h $(srcdir)/config/rl78-defs.h \ | |
76e7a751 | 510 | $(INCDIR)/elf/common.h $(INCDIR)/elf/rl78.h |
99c513f6 DD |
511 | |
512 | rl78-defs.h: ; @true | |
513 | ||
c7927a3c NC |
514 | rx-parse.c: $(srcdir)/config/rx-parse.y |
515 | $(SHELL) $(YLWRAP) $(srcdir)/config/rx-parse.y y.tab.c rx-parse.c y.tab.h rx-parse.h -- $(YACCCOMPILE) -d ; | |
516 | rx-parse.h: rx-parse.c | |
52a6ecd2 | 517 | rx-parse.@OBJEXT@: rx-parse.c rx-parse.h $(srcdir)/config/rx-defs.h \ |
76e7a751 | 518 | $(INCDIR)/elf/common.h $(INCDIR)/elf/rx.h |
c7927a3c NC |
519 | |
520 | rx-defs.h: ; @true | |
521 | $(srcdir)/config/rx-defs.h: ; @true | |
522 | ||
252b5132 RH |
523 | # The instruction table specification lexical analyzer and parser. |
524 | ||
0876dd7e | 525 | # Disable -Werror, if it has been enabled, since old versions of bison/ |
12e64c2c | 526 | # yacc will produce working code which contain compile time warnings. |
df7b86aa | 527 | itbl-lex-wrapper.@OBJEXT@: itbl-lex-wrapper.c itbl-lex.c itbl-parse.h |
a5c7551f | 528 | if am__fastdepCC |
df7b86aa | 529 | $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/itbl-lex-wrapper.c $(NO_WERROR) |
a5c7551f RW |
530 | mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po |
531 | else | |
532 | if AMDEP | |
df7b86aa | 533 | source='itbl-lex-wrapper.c' object='$@' libtool=no @AMDEPBACKSLASH@ |
a5c7551f RW |
534 | DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ |
535 | endif | |
df7b86aa | 536 | $(COMPILE) -c $(srcdir)/itbl-lex-wrapper.c $(NO_WERROR) |
a5c7551f | 537 | endif |
252b5132 | 538 | |
1a66a017 | 539 | # Disable -Werror, if it has been enabled, since old versions of bison/ |
12e64c2c | 540 | # yacc will produce working code which contain compile time warnings. |
52a6ecd2 | 541 | itbl-parse.@OBJEXT@: itbl-parse.c |
a5c7551f | 542 | if am__fastdepCC |
7bb7d81f | 543 | $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f itbl-parse.c || echo $(srcdir)/`itbl-parse.c $(NO_WERROR) |
a5c7551f RW |
544 | mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po |
545 | else | |
546 | if AMDEP | |
547 | source='itbl-parse.c' object='$@' libtool=no @AMDEPBACKSLASH@ | |
548 | DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
549 | endif | |
7bb7d81f | 550 | $(COMPILE) -c `test -f itbl-parse.c || echo $(srcdir)/`itbl-parse.c $(NO_WERROR) |
a5c7551f | 551 | endif |
252b5132 | 552 | |
ce4a1a3a | 553 | itbl-parse.c: $(srcdir)/itbl-parse.y |
42ecbf5e | 554 | $(SHELL) $(YLWRAP) $(srcdir)/itbl-parse.y y.tab.c itbl-parse.c y.tab.h itbl-parse.h -- $(YACCCOMPILE) -d |
252b5132 | 555 | |
ce4a1a3a RW |
556 | itbl-parse.h: itbl-parse.c ; @true |
557 | ||
52a6ecd2 | 558 | itbl-ops.@OBJEXT@: itbl-parse.h |
ce4a1a3a | 559 | |
252b5132 RH |
560 | # stand-alone itbl assembler & disassembler |
561 | ||
fea17916 | 562 | EXTRA_PROGRAMS = itbl-test |
252b5132 | 563 | itbl_test_SOURCES = itbl-parse.y itbl-lex.l |
52a6ecd2 | 564 | itbl_test_LDADD = itbl-tops.@OBJEXT@ itbl-test.@OBJEXT@ $(GASLIBS) @LEXLIB@ |
252b5132 | 565 | |
52a6ecd2 | 566 | itbl-tops.@OBJEXT@: itbl-ops.c itbl-parse.h |
a5c7551f RW |
567 | if am__fastdepCC |
568 | $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -o $@ -c -DSTAND_ALONE $(srcdir)/itbl-ops.c | |
569 | mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po | |
570 | else | |
571 | if AMDEP | |
572 | source='itbl-ops.c' object='$@' libtool=no @AMDEPBACKSLASH@ | |
573 | DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
574 | endif | |
575 | $(COMPILE) -o $@ -DSTAND_ALONE -c $(srcdir)/itbl-ops.c | |
576 | endif | |
577 | ||
52a6ecd2 | 578 | itbl-test.@OBJEXT@: $(srcdir)/testsuite/gas/all/itbl-test.c |
a5c7551f RW |
579 | if am__fastdepCC |
580 | $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c | |
581 | mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po | |
582 | else | |
583 | if AMDEP | |
584 | source='itbl-test.c' object='$@' libtool=no @AMDEPBACKSLASH@ | |
585 | DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
586 | endif | |
252b5132 | 587 | $(COMPILE) -c -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c |
a5c7551f | 588 | endif |
252b5132 RH |
589 | |
590 | # CGEN interface. | |
591 | ||
592 | CGEN_CPU_PREFIX = @cgen_cpu_prefix@ | |
593 | ||
52a6ecd2 | 594 | cgen.@OBJEXT@: cgen.c cgen.h cgen-desc.h subsegs.h \ |
252b5132 RH |
595 | $(INCDIR)/obstack.h $(INCDIR)/opcode/cgen.h \ |
596 | $(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-desc.h \ | |
597 | $(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-opc.h | |
598 | ||
599 | # Remake the info files. | |
600 | ||
e079bef8 | 601 | MOSTLYCLEANFILES = $(STAGESTUFF) core \ |
5ae57a91 | 602 | testsuite/*.@OBJEXT@ testsuite/*.out testsuite/gas.log testsuite/gas.sum \ |
252b5132 RH |
603 | testsuite/site.exp site.bak site.exp stage stage1 stage2 |
604 | ||
252b5132 RH |
605 | .PHONY: install-exec-local install-data-local |
606 | .PHONY: install-exec-bindir install-exec-tooldir | |
607 | ||
608 | install-exec-local: install-exec-bindir @install_tooldir@ | |
609 | ||
610 | install-exec-bindir: $(noinst_PROGRAMS) | |
d3d8a9ee | 611 | $(mkinstalldirs) $(DESTDIR)$(bindir) |
252b5132 RH |
612 | @list='$(noinst_PROGRAMS)'; for p in $$list; do \ |
613 | if test -f $$p; then \ | |
f2c7d7ee RM |
614 | echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ |
615 | $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ | |
252b5132 RH |
616 | else :; fi; \ |
617 | done | |
618 | ||
f8c827e9 | 619 | install-exec-tooldir: install-exec-bindir $(noinst_PROGRAMS) |
d3d8a9ee | 620 | $(mkinstalldirs) $(DESTDIR)$(tooldir)/bin |
252b5132 RH |
621 | n=`echo as | sed '$(transform)'`; \ |
622 | if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/as$(EXEEXT)" ]; then \ | |
d3d8a9ee NC |
623 | rm -f $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \ |
624 | ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT) >/dev/null 2>/dev/null \ | |
f2c7d7ee | 625 | || $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) as-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \ |
252b5132 RH |
626 | else \ |
627 | true ; \ | |
628 | fi | |
629 | ||
630 | # These exist for maintenance purposes. | |
631 | ||
632 | .PHONY: bootstrap bootstrap2 bootstrap3 stage1 stage2 stage3 comparison | |
633 | ||
5c7a0b3e | 634 | bootstrap: as-new$(EXEEXT) |
252b5132 RH |
635 | $(MAKE) stage1 |
636 | rm -f stage && ln -s stage1 stage | |
637 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS) | |
638 | $(MAKE) stage2 | |
639 | rm -f stage && ln -s stage2 stage | |
640 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS) | |
641 | $(MAKE) comparison against=stage2 | |
642 | ||
643 | bootstrap2: | |
644 | rm -f stage && ln -s stage1 stage | |
645 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS) | |
646 | $(MAKE) stage2 | |
647 | rm -f stage && ln -s stage2 stage | |
648 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS) | |
649 | $(MAKE) comparison against=stage2 | |
650 | ||
651 | bootstrap3: | |
652 | rm -f stage && ln -s stage2 stage | |
653 | $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS) | |
654 | $(MAKE) comparison against=stage2 | |
655 | ||
656 | # Copy the object files from a particular stage into a subdirectory. | |
657 | stage1: | |
658 | -mkdir stage1 | |
659 | -mv $(STAGESTUFF) stage1 | |
660 | if [ -f stage1/as-new$(EXEEXT) -a ! -f stage1/as$(EXEEXT) ] ; then (cd stage1 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi | |
661 | ||
662 | stage2: | |
663 | -mkdir stage2 | |
664 | -mv $(STAGESTUFF) stage2 | |
665 | if [ -f stage2/as-new$(EXEEXT) -a ! -f stage2/as$(EXEEXT) ] ; then (cd stage2 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi | |
666 | ||
667 | stage3: | |
668 | -mkdir stage3 | |
669 | -mv $(STAGESTUFF) stage3 | |
670 | if [ -f stage3/as-new$(EXEEXT) -a ! -f stage3/as$(EXEEXT) ] ; then (cd stage3 ; ln -s as-new as$(EXEEXT)) ; fi | |
671 | ||
672 | against=stage2 | |
673 | ||
674 | # This rule is derived from corresponding code in the Makefile.in for gcc. | |
675 | # The "tail +16c" is to bypass headers which may include timestamps or | |
676 | # temporary assembly file names. | |
677 | comparison: | |
678 | x=0 ; \ | |
52a6ecd2 | 679 | for file in *.@OBJEXT@ ; do \ |
252b5132 RH |
680 | tail +16c ./$$file > tmp-foo1; \ |
681 | if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \ | |
682 | if cmp tmp-foo1 tmp-foo2 ; then \ | |
683 | true ; \ | |
684 | else \ | |
685 | echo $$file differs ; \ | |
686 | x=1 ; \ | |
687 | fi ; \ | |
688 | else true; fi ; \ | |
689 | done ; \ | |
690 | exit $$x | |
691 | -rm -f tmp-foo* | |
692 | ||
693 | .PHONY: de-stage1 de-stage2 de-stage3 | |
694 | ||
695 | de-stage1: | |
696 | - (cd stage1 ; rm -f as$(EXEEXT) ; mv -f * ..) | |
697 | - rmdir stage1 | |
698 | ||
699 | de-stage2: | |
700 | - (cd stage2 ; rm -f as$(EXEEXT) ; mv -f * ..) | |
701 | - rmdir stage2 | |
702 | ||
703 | de-stage3: | |
704 | - (cd stage3 ; rm -f as$(EXEEXT) ; mv -f * ..) | |
705 | - rmdir stage3 | |
706 | ||
2e98a7bd AM |
707 | # Reconfigure if configure.tgt changes. |
708 | # development.sh is used to determine -Werror default. | |
709 | CONFIG_STATUS_DEPENDENCIES = $(srcdir)/configure.tgt $(BFDDIR)/development.sh |