diff options
author | Alan Modra <amodra@bigpond.net.au> | 2000-04-19 02:51:55 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2000-04-19 02:51:55 +0000 |
commit | 028102b38a187e00449fd2af733f8320fa6ce2ae (patch) | |
tree | 1a3abb5d391299483d48cd8e5e0489038d291717 | |
parent | 1117324baa23ac0e1ff9502d9dc337fe0a1993e0 (diff) | |
download | binutils-redhat-028102b38a187e00449fd2af733f8320fa6ce2ae.tar.gz |
Get LEX,FLEX from configure.
-rw-r--r-- | gas/ChangeLog | 7 | ||||
-rw-r--r-- | gas/Makefile.am | 4 | ||||
-rw-r--r-- | gas/Makefile.in | 7 |
3 files changed, 13 insertions, 5 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 9bc15bb109..175b90e2f9 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,7 +1,12 @@ +2000-04-19 Michael Sokolov <msokolov@ivan.Harhan.ORG> + + * Makefile.am (FLEX, LEX): Get them from configure. + * Makefile.in: Regenerate. + 2000-04-18 H.J. Lu (hjl@gnu.org) * config/tc-i386.c (offset_in_range): Use addressT instead of - bfd_vma for none bfd assemblers. + bfd_vma for non-bfd assemblers. 2000-04-17 Alan Modra <alan@linuxcare.com.au> diff --git a/gas/Makefile.am b/gas/Makefile.am index b0a65ba430..469ae53243 100644 --- a/gas/Makefile.am +++ b/gas/Makefile.am @@ -9,8 +9,8 @@ SUBDIRS = doc po tooldir = $(exec_prefix)/$(target_alias) -YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi` -LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi` +YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo @YACC@ ; fi` +LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo @LEX@ ; fi` WARN_CFLAGS = @WARN_CFLAGS@ AM_CFLAGS = $(WARN_CFLAGS) diff --git a/gas/Makefile.in b/gas/Makefile.in index f4ad64330a..da15e66a99 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -113,8 +113,8 @@ SUBDIRS = doc po tooldir = $(exec_prefix)/$(target_alias) -YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi` -LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi` +YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo @YACC@ ; fi` +LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo @LEX@ ; fi` WARN_CFLAGS = @WARN_CFLAGS@ AM_CFLAGS = $(WARN_CFLAGS) @@ -145,6 +145,7 @@ CPU_TYPES = \ alpha \ arc \ arm \ + avr \ d10v \ d30v \ fr30 \ @@ -309,6 +310,7 @@ TARGET_CPU_CFILES = \ config/tc-alpha.c \ config/tc-arc.c \ config/tc-arm.c \ + config/tc-avr.c \ config/tc-d10v.c \ config/tc-d30v.c \ config/tc-fr30.c \ @@ -345,6 +347,7 @@ TARGET_CPU_HFILES = \ config/tc-alpha.h \ config/tc-arc.h \ config/tc-arm.h \ + config/tc-avr.h \ config/tc-d10v.h \ config/tc-d30v.h \ config/tc-fr30.h \ |