Get LEX,FLEX from configure.

This commit is contained in:
Alan Modra 2000-04-19 02:51:55 +00:00
parent 93d2d69ce2
commit 9c46fb1b9c
3 changed files with 13 additions and 5 deletions

View File

@ -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>

View File

@ -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)

View File

@ -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 \