diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2004-07-08 19:46:05 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2004-07-08 19:46:05 +0000 |
commit | b7318849a3eb2d29cfaf508e950f3c7d0995aeef (patch) | |
tree | f47e89e82d5e22866445c1d516d445eb2877a388 | |
parent | f26cbf00d4528a2b3f440150b83d95b3475d7820 (diff) | |
download | binutils-redhat-b7318849a3eb2d29cfaf508e950f3c7d0995aeef.tar.gz |
* Makefile.def (host_modules): Set bootstrap=true for flex.
* Makefile.tpl (all-gcc): Depend on texinfo and flex.
* Makefile.in: Rebuilt.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.def | 2 | ||||
-rw-r--r-- | Makefile.in | 4 | ||||
-rw-r--r-- | Makefile.tpl | 2 |
4 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2004-07-08 Alexandre Oliva <aoliva@redhat.com> + + * Makefile.def (host_modules): Set bootstrap=true for flex. + * Makefile.tpl (all-gcc): Depend on texinfo and flex. + * Makefile.in: Rebuilt. + 2004-07-01 Paolo Bonzini <bonzini@gnu.org> * Makefile.def (build_modules): Add bison, byacc, flex, diff --git a/Makefile.def b/Makefile.def index 511876f812..21f2c7c8fc 100644 --- a/Makefile.def +++ b/Makefile.def @@ -50,7 +50,7 @@ host_modules= { module= fastjar; no_check_cross= true; }; host_modules= { module= fileutils; }; host_modules= { module= findutils; }; host_modules= { module= find; }; -host_modules= { module= flex; no_check_cross= true; }; +host_modules= { module= flex; no_check_cross= true; bootstrap=true; }; host_modules= { module= gas; bootstrap=true; }; host_modules= { module= gawk; }; host_modules= { module= gettext; }; diff --git a/Makefile.in b/Makefile.in index 2dbd157a3a..489c642ebe 100644 --- a/Makefile.in +++ b/Makefile.in @@ -29195,13 +29195,13 @@ all-build-m4: maybe-all-build-libiberty maybe-all-build-texinfo # GCC needs to identify certain tools. # GCC also needs the information exported by the intl configure script. configure-gcc: maybe-configure-intl maybe-configure-binutils maybe-configure-gas maybe-configure-ld maybe-configure-bison maybe-configure-flex -all-gcc: maybe-all-libiberty maybe-all-intl maybe-all-bison maybe-all-byacc maybe-all-binutils maybe-all-gas maybe-all-ld maybe-all-zlib maybe-all-libbanshee maybe-all-libcpp +all-gcc: maybe-all-libiberty maybe-all-intl maybe-all-texinfo maybe-all-bison maybe-all-byacc maybe-all-flex maybe-all-binutils maybe-all-gas maybe-all-ld maybe-all-zlib maybe-all-libbanshee maybe-all-libcpp configure-libcpp: maybe-configure-libiberty maybe-configure-intl all-libcpp: maybe-all-libiberty maybe-all-intl # This is a slightly kludgy method of getting dependencies on # all-build-libiberty correct; it would be better to build it every time. all-gcc: maybe-all-build-libiberty -all-bootstrap: maybe-all-binutils maybe-all-bison maybe-all-byacc maybe-all-gas maybe-all-intl maybe-all-ld maybe-all-libcpp maybe-all-libbanshee maybe-all-libiberty maybe-all-texinfo maybe-all-zlib +all-bootstrap: maybe-all-binutils maybe-all-bison maybe-all-byacc maybe-all-flex maybe-all-gas maybe-all-intl maybe-all-ld maybe-all-libcpp maybe-all-libbanshee maybe-all-libiberty maybe-all-texinfo maybe-all-zlib # Host modules specific to gdb. # GDB needs to know that the simulator is being built. diff --git a/Makefile.tpl b/Makefile.tpl index 014aa879ce..38ff3dbb42 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -1675,7 +1675,7 @@ all-build-m4: maybe-all-build-libiberty maybe-all-build-texinfo # GCC needs to identify certain tools. # GCC also needs the information exported by the intl configure script. configure-gcc: maybe-configure-intl maybe-configure-binutils maybe-configure-gas maybe-configure-ld maybe-configure-bison maybe-configure-flex -all-gcc: maybe-all-libiberty maybe-all-intl maybe-all-bison maybe-all-byacc maybe-all-binutils maybe-all-gas maybe-all-ld maybe-all-zlib maybe-all-libbanshee maybe-all-libcpp +all-gcc: maybe-all-libiberty maybe-all-intl maybe-all-texinfo maybe-all-bison maybe-all-byacc maybe-all-flex maybe-all-binutils maybe-all-gas maybe-all-ld maybe-all-zlib maybe-all-libbanshee maybe-all-libcpp configure-libcpp: maybe-configure-libiberty maybe-configure-intl all-libcpp: maybe-all-libiberty maybe-all-intl # This is a slightly kludgy method of getting dependencies on |