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