1 ## Process this file with automake to generate Makefile.in
3 AUTOMAKE_OPTIONS = 1.11 dejagnu foreign no-dist
4 ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
8 tooldir = $(exec_prefix)/$(target_alias)
10 YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo @YACC@ ; fi`
11 LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo @LEX@ ; fi`
13 # Automake 1.10+ disables lex and yacc output file regeneration if
14 # maintainer mode is disabled. Avoid this.
18 WARN_CFLAGS = @WARN_CFLAGS@
19 NO_WERROR = @NO_WERROR@
20 AM_CFLAGS = $(WARN_CFLAGS)
22 TARG_CPU = @target_cpu_type@
23 TARG_CPU_C = $(srcdir)/config/tc-@target_cpu_type@.c
24 TARG_CPU_O = tc-@target_cpu_type@.o
25 TARG_CPU_H = $(srcdir)/config/tc-@target_cpu_type@.h
26 OBJ_FORMAT_C = $(srcdir)/config/obj-@obj_format@.c
27 OBJ_FORMAT_O = obj-@obj_format@.o
28 OBJ_FORMAT_H = $(srcdir)/config/obj-@obj_format@.h
29 TARG_ENV_H = $(srcdir)/config/te-@te_file@.h
30 ATOF_TARG_C = $(srcdir)/config/atof-@atof@.c
31 ATOF_TARG_O = atof-@atof@.o
33 # use @target_cpu_type@ for refering to configured target name
34 IT_HDRS=itbl-parse.h $(srcdir)/itbl-ops.h
35 IT_SRCS=itbl-parse.c itbl-lex.c $(srcdir)/itbl-ops.c
36 IT_DEPS=$(srcdir)/itbl-parse.y $(srcdir)/itbl-lex.l $(srcdir)/config/itbl-@target_cpu_type@.h
37 IT_OBJS=itbl-parse.o itbl-lex.o itbl-ops.o
40 # Regular source files.
73 CFILES = $(GAS_CFILES) itbl-ops.c cgen.c
105 # CPU files in config.
107 TARGET_CPU_CFILES = \
133 config/tc-m68hc11.c \
138 config/tc-microblaze.c \
141 config/tc-mn10200.c \
142 config/tc-mn10300.c \
147 config/tc-openrisc.c \
165 config/tc-xstormy16.c \
170 config/xtensa-relax.c
172 TARGET_CPU_HFILES = \
198 config/tc-m68hc11.h \
203 config/tc-microblaze.h \
206 config/tc-mn10200.h \
207 config/tc-mn10300.h \
211 config/tc-openrisc.h \
229 config/tc-xstormy16.h \
234 config/xtensa-relax.h
236 # OBJ files in config
238 OBJ_FORMAT_CFILES = \
244 config/obj-fdpicelf.c \
249 OBJ_FORMAT_HFILES = \
255 config/obj-fdpicelf.h \
260 # Emulation header files in config
265 config/te-armeabi.h \
266 config/te-armlinuxeabi.h \
268 config/te-epoc-pe.h \
269 config/te-freebsd.h \
270 config/te-generic.h \
275 config/te-hppalinux64.h \
276 config/te-i386aix.h \
277 config/te-ia64aix.h \
278 config/te-interix.h \
284 config/te-nbsd532.h \
285 config/te-netware.h \
286 config/te-pc532mach.h \
290 config/te-solaris.h \
291 config/te-sparcaout.h \
294 config/te-symbian.h \
296 config/te-vxworks.h \
302 # Multi files in config
305 config/e-crisaout.c \
307 config/e-i386aout.c \
308 config/e-i386coff.c \
310 config/e-mipsecoff.c \
350 CONFIG_ATOF_CFILES = \
354 OBJS = $(CONFIG_OBJS) $(GENERIC_OBJS)
356 POTFILES = $(MULTI_CFILES) $(CONFIG_ATOF_CFILES) \
357 $(TARG_ENV_HFILES) $(TARG_ENV_CFILES) $(OBJ_FORMAT_HFILES) \
358 $(OBJ_FORMAT_CFILES) $(TARGET_CPU_HFILES) $(TARGET_CPU_CFILES) \
360 po/POTFILES.in: @MAINT@ Makefile
361 for f in $(POTFILES); do echo $$f; done | LC_ALL=C sort > tmp \
362 && mv tmp $(srcdir)/po/POTFILES.in
364 # Note: GASP is now deprecated and has been removed. It is still
365 # available in the CVS archive or older binutils releases if it is needed.
366 noinst_PROGRAMS = as-new
367 noinst_SCRIPTS = $(GDBINIT)
368 EXTRA_SCRIPTS = .gdbinit
370 EXTRA_DIST = m68k-parse.c itbl-parse.c itbl-parse.h itbl-lex.c \
371 bfin-parse.c bfin-parse.h bfin-lex.c \
372 rx-parse.c rx-parse.h
374 diststuff: $(EXTRA_DIST) info
376 DISTCLEANFILES = targ-cpu.h obj-format.h targ-env.h itbl-cpu.h cgen-desc.h
378 # Now figure out from those variables how to compile and link.
380 BASEDIR = $(srcdir)/..
381 BFDDIR = $(BASEDIR)/bfd
382 INCDIR = $(BASEDIR)/include
384 # This is the variable actually used when we compile.
385 # Specify the directories to be searched for header files.
386 # Both . and srcdir are used, in that order,
387 # so that tm.h and config.h will be found in the compilation
388 # subdirectory rather than in the source directory.
389 AM_CPPFLAGS = -I. -I$(srcdir) -I../bfd -I$(srcdir)/config \
390 -I$(INCDIR) -I$(srcdir)/.. -I$(BFDDIR) @INCINTL@ \
391 -DLOCALEDIR="\"$(datadir)/locale\""
393 # How to link with both our special library facilities
394 # and the system's installed libraries.
396 GASLIBS = @OPCODES_LIB@ ../bfd/libbfd.la ../libiberty/libiberty.a
398 # Files to be copied away after each stage in building.
399 STAGESTUFF = *.o $(noinst_PROGRAMS)
401 as_new_SOURCES = $(GAS_CFILES)
402 as_new_LDADD = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
403 $(extra_objects) $(GASLIBS) $(LIBINTL) $(LIBM)
404 as_new_DEPENDENCIES = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
405 $(extra_objects) $(GASLIBS) $(LIBINTL_DEP)
406 EXTRA_as_new_SOURCES = $(CFILES) $(HFILES) $(TARGET_CPU_CFILES) \
407 $(TARGET_CPU_HFILES) $(OBJ_FORMAT_CFILES) $(OBJ_FORMAT_HFILES) \
408 $(TARG_ENV_CFILES) $(CONFIG_ATOF_CFILES) $(MULTI_CFILES)
414 check-DEJAGNU: site.exp
415 if [ -d testsuite ]; then \
420 rm -f testsuite/site.exp
421 cp site.exp testsuite/site.exp
422 rootme=`pwd`; export rootme; \
423 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
424 EXPECT=${EXPECT} ; export EXPECT ; \
425 runtest=$(RUNTEST); \
427 if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
428 $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
430 else echo "WARNING: could not find \`runtest'" 1>&2; :;\
433 # The m68k operand parser.
435 EXTRA_as_new_SOURCES += config/m68k-parse.y config/bfin-parse.y
437 # If m68k-parse.y is in a different directory, then ylwrap will use an
438 # absolute path when it invokes yacc, which will cause yacc to put the
439 # absolute path into the generated file. That's a pain when it comes
440 # to generating snapshots, because it introduces spurious diffs.
441 # Since when we make the snapshots $(srcdir) = ".", we check for that
442 # case and handle it differently. This means that anybody who
443 # configures with $(srcdir) = "." will have to set their path in the
444 # debugger if they want to debug m68k-parse.y. This is bad, but on
445 # the other hand it's good that people who use the prebuilt
446 # m68k-parse.c don't get a spurious absolute path.
447 m68k-parse.c: $(srcdir)/config/m68k-parse.y
448 f=$(srcdir)/config/m68k-parse.y; \
449 if [ $$f = "./config/m68k-parse.y" ]; then \
450 ln -s config/m68k-parse.y . > /dev/null 2>/dev/null || \
451 ln config/m68k-parse.y . > /dev/null 2>/dev/null || \
452 cp config/m68k-parse.y . >/dev/null 2>/dev/null; \
455 $(SHELL) $(YLWRAP) $$f y.tab.c m68k-parse.c -- $(YACCCOMPILE); \
456 if [ $$f = "m68k-parse.y" ]; then \
457 rm -f m68k-parse.y; \
459 # Disable -Werror, if it has been enabled, since old versions of bison/
460 # yacc will produce working code which contain compile time warnings.
461 m68k-parse.o: m68k-parse.c
463 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f m68k-parse.c || echo $(srcdir)/`m68k-parse.c $(NO_WERROR)
464 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
467 source='m68k-parse.c' object='$@' libtool=no @AMDEPBACKSLASH@
468 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
470 $(COMPILE) -c `test -f m68k-parse.c || echo $(srcdir)/`m68k-parse.c $(NO_WERROR)
473 # Don't let the .y.h rule clobber m68k-parse.h.
474 m68k-parse.h: ; @true
475 $(srcdir)/config/m68k-parse.h: ; @true
477 bfin-parse.c: $(srcdir)/config/bfin-parse.y
478 $(SHELL) $(YLWRAP) $(srcdir)/config/bfin-parse.y y.tab.c bfin-parse.c y.tab.h bfin-parse.h -- $(YACCCOMPILE) -d ;
479 bfin-parse.h: bfin-parse.c
480 bfin-parse.o: bfin-parse.c \
481 $(srcdir)/config/bfin-aux.h $(srcdir)/config/bfin-defs.h \
482 $(INCDIR)/elf/common.h $(INCDIR)/elf/bfin.h $(BFDDIR)/libbfd.h
484 bfin-parse.h: ; @true
485 $(srcdir)/config/bfin-parse.h: ; @true
487 bfin-lex.c: $(srcdir)/config/bfin-lex.l
488 $(SHELL) $(YLWRAP) $(srcdir)/config/bfin-lex.l lex.yy.c bfin-lex.c -- $(LEXCOMPILE)
489 bfin-lex.o: bfin-lex.c bfin-parse.h $(srcdir)/config/bfin-defs.h
491 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f bfin-lex.c || echo $(srcdir)/`bfin-lex.c $(NO_WERROR)
492 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
495 source='bfin-lex.c' object='$@' libtool=no @AMDEPBACKSLASH@
496 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
498 $(COMPILE) -c `test -f bfin-lex.c || echo $(srcdir)/`bfin-lex.c $(NO_WERROR)
501 rx-parse.c: $(srcdir)/config/rx-parse.y
502 $(SHELL) $(YLWRAP) $(srcdir)/config/rx-parse.y y.tab.c rx-parse.c y.tab.h rx-parse.h -- $(YACCCOMPILE) -d ;
503 rx-parse.h: rx-parse.c
504 rx-parse.o: rx-parse.c rx-parse.h $(srcdir)/config/rx-defs.h \
505 $(INCDIR)/elf/common.h $(INCDIR)/elf/rx.h $(BFDDIR)/libbfd.h
508 $(srcdir)/config/rx-defs.h: ; @true
510 # The instruction table specification lexical analyzer and parser.
512 # Disable -Werror, if it has been enabled, since old versions of bison/
513 # yacc will produce working code which contain compile time warnings.
514 itbl-lex.o: itbl-lex.c itbl-parse.h
516 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f itbl-lex.c || echo $(srcdir)/`itbl-lex.c $(NO_WERROR)
517 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
520 source='itbl-lex.c' object='$@' libtool=no @AMDEPBACKSLASH@
521 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
523 $(COMPILE) -c `test -f itbl-lex.c || echo $(srcdir)/`itbl-lex.c $(NO_WERROR)
526 # Disable -Werror, if it has been enabled, since old versions of bison/
527 # yacc will produce working code which contain compile time warnings.
528 itbl-parse.o: itbl-parse.c
530 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f itbl-parse.c || echo $(srcdir)/`itbl-parse.c $(NO_WERROR)
531 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
534 source='itbl-parse.c' object='$@' libtool=no @AMDEPBACKSLASH@
535 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
537 $(COMPILE) -c `test -f itbl-parse.c || echo $(srcdir)/`itbl-parse.c $(NO_WERROR)
540 itbl-parse.c: $(srcdir)/itbl-parse.y
541 $(SHELL) $(YLWRAP) $(srcdir)/itbl-parse.y y.tab.c itbl-parse.c y.tab.h itbl-parse.h -- $(YACCCOMPILE) -d
543 itbl-parse.h: itbl-parse.c ; @true
545 itbl-ops.o: itbl-parse.h
547 # stand-alone itbl assembler & disassembler
549 EXTRA_PROGRAMS = itbl-test
550 itbl_test_SOURCES = itbl-parse.y itbl-lex.l
551 itbl_test_LDADD = itbl-tops.o itbl-test.o $(GASLIBS) @LEXLIB@
553 itbl-tops.o: itbl-ops.c itbl-parse.h
555 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -o $@ -c -DSTAND_ALONE $(srcdir)/itbl-ops.c
556 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
559 source='itbl-ops.c' object='$@' libtool=no @AMDEPBACKSLASH@
560 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
562 $(COMPILE) -o $@ -DSTAND_ALONE -c $(srcdir)/itbl-ops.c
565 itbl-test.o: $(srcdir)/testsuite/gas/all/itbl-test.c
567 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c
568 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
571 source='itbl-test.c' object='$@' libtool=no @AMDEPBACKSLASH@
572 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
574 $(COMPILE) -c -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c
579 CGEN_CPU_PREFIX = @cgen_cpu_prefix@
581 cgen.o: cgen.c cgen.h cgen-desc.h subsegs.h \
582 $(INCDIR)/obstack.h $(INCDIR)/opcode/cgen.h \
583 $(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-desc.h \
584 $(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-opc.h
586 # Remake the info files.
588 MOSTLYCLEANFILES = $(STAGESTUFF) core \
589 testsuite/*.o testsuite/*.out testsuite/gas.log testsuite/gas.sum \
590 testsuite/site.exp site.bak site.exp stage stage1 stage2
592 .PHONY: install-exec-local install-data-local
593 .PHONY: install-exec-bindir install-exec-tooldir
595 install-exec-local: install-exec-bindir @install_tooldir@
597 install-exec-bindir: $(noinst_PROGRAMS)
598 $(mkinstalldirs) $(DESTDIR)$(bindir)
599 @list='$(noinst_PROGRAMS)'; for p in $$list; do \
600 if test -f $$p; then \
601 echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
602 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
606 install-exec-tooldir: install-exec-bindir $(noinst_PROGRAMS)
607 $(mkinstalldirs) $(DESTDIR)$(tooldir)/bin
608 n=`echo as | sed '$(transform)'`; \
609 if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/as$(EXEEXT)" ]; then \
610 rm -f $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \
611 ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT) >/dev/null 2>/dev/null \
612 || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) as-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \
617 # These exist for maintenance purposes.
619 .PHONY: bootstrap bootstrap2 bootstrap3 stage1 stage2 stage3 comparison
623 rm -f stage && ln -s stage1 stage
624 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
626 rm -f stage && ln -s stage2 stage
627 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
628 $(MAKE) comparison against=stage2
631 rm -f stage && ln -s stage1 stage
632 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
634 rm -f stage && ln -s stage2 stage
635 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
636 $(MAKE) comparison against=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
643 # Copy the object files from a particular stage into a subdirectory.
646 -mv $(STAGESTUFF) stage1
647 if [ -f stage1/as-new$(EXEEXT) -a ! -f stage1/as$(EXEEXT) ] ; then (cd stage1 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
651 -mv $(STAGESTUFF) stage2
652 if [ -f stage2/as-new$(EXEEXT) -a ! -f stage2/as$(EXEEXT) ] ; then (cd stage2 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
656 -mv $(STAGESTUFF) stage3
657 if [ -f stage3/as-new$(EXEEXT) -a ! -f stage3/as$(EXEEXT) ] ; then (cd stage3 ; ln -s as-new as$(EXEEXT)) ; fi
661 # This rule is derived from corresponding code in the Makefile.in for gcc.
662 # The "tail +16c" is to bypass headers which may include timestamps or
663 # temporary assembly file names.
666 for file in *.o ; do \
667 tail +16c ./$$file > tmp-foo1; \
668 if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \
669 if cmp tmp-foo1 tmp-foo2 ; then \
672 echo $$file differs ; \
680 .PHONY: de-stage1 de-stage2 de-stage3
683 - (cd stage1 ; rm -f as$(EXEEXT) ; mv -f * ..)
687 - (cd stage2 ; rm -f as$(EXEEXT) ; mv -f * ..)
691 - (cd stage3 ; rm -f as$(EXEEXT) ; mv -f * ..)
694 CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/configure.in $(srcdir)/configure.tgt