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