diff options
author | manfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-19 05:42:16 +0000 |
---|---|---|
committer | manfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-19 05:42:16 +0000 |
commit | bd07cdfb9f255142c0d8f5fae161442065396088 (patch) | |
tree | cc333f7263335e95d35e8875d7ca856c5c3e06c4 /Makefile.in | |
parent | 640128ad1e8a7d3e27d1368efb7e1c2e9f1b061d (diff) | |
download | gcc-bd07cdfb9f255142c0d8f5fae161442065396088.tar.gz |
�
egcs-19980619/ChangeLog
1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
* configure (gcc_version): Add new variable describing the
particular gcc version we're building.
* Makefile.in (libsubdir): Add new macro for the directory
in which the compiler finds executables, libraries, etc.
(BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
and libsubdir.
egcs-19980619/gcc/ChangeLog
1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
* Makefile.in (installdirs): Loop over directories in $(libsubdir)
creating probably missing ones, instead of single if statements.
egcs-19980619/libio/ChangeLog
1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
* config.shared (FLAGS_TO_PASS): Add libsubdir.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20583 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index d08629a106f..0cd40b1407f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -41,6 +41,8 @@ man8dir = $(mandir)/man8 man9dir = $(mandir)/man9 infodir = $(prefix)/info includedir = $(prefix)/include +# Directory in which the compiler finds executables, libraries, etc. +libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(gcc_version) GDB_NLM_DEPS = SHELL = /bin/sh @@ -355,7 +357,10 @@ BASE_FLAGS_TO_PASS = \ "exec_prefix=$(exec_prefix)" \ "prefix=$(prefix)" \ "tooldir=$(tooldir)" \ - "gxx_include_dir=$(gxx_include_dir)" + "gxx_include_dir=$(gxx_include_dir)" \ + "gcc_version=$(gcc_version)" \ + "target_alias=$(target_alias)" \ + "libsubdir=$(libsubdir)" # Flags to pass down to most sub-makes, in which we're building with # the host environment. |