diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2003-08-27 19:06:56 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2003-08-27 19:06:56 +0000 |
commit | 92eabea208c3d09e0234cd32db064d6e1d5fac7b (patch) | |
tree | d38037daf02cdd90f73e292b4bafe5c70a210f8a /libstdc++-v3/Makefile.am | |
parent | 5af2f3d3ff87a08c4292f6dcbf60a6d1b7039e6c (diff) | |
download | gcc-92eabea208c3d09e0234cd32db064d6e1d5fac7b.zip gcc-92eabea208c3d09e0234cd32db064d6e1d5fac7b.tar.gz gcc-92eabea208c3d09e0234cd32db064d6e1d5fac7b.tar.bz2 |
acinclude.m4 (GLIBCXX_CONDITIONAL): New macro.
2003-08-27 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_CONDITIONAL): New macro. Wrap
AM_CONDITIONAL. Replace all calls to AM_CONDITIONAL with this one.
(GLIBCXX_ENABLE_HOSTED): New macro, sets new variable is_hosted,
used elsewhere in this file.
(GLIBCXX_EVALUATE_CONDITIONALS): New macro...
* configure.ac: ...called here to expand all conditionals.
* Makefile.am: Conditionalize SUBDIRS on GLIBCXX_HOSTED.
* include/Makefile.am: Remove redundant gxx_include_dir assignment.
(install-freestanding-headers): New target, a subset of
install-headers. Conditionalize install-data-local on GLIBCXX_HOSTED.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerated.
From-SVN: r70854
Diffstat (limited to 'libstdc++-v3/Makefile.am')
-rw-r--r-- | libstdc++-v3/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/Makefile.am b/libstdc++-v3/Makefile.am index 59ab45ce..2c3db0e 100644 --- a/libstdc++-v3/Makefile.am +++ b/libstdc++-v3/Makefile.am @@ -24,8 +24,12 @@ include $(top_srcdir)/fragment.am +if GLIBCXX_HOSTED + # Possibly libmath as well... + hosted_source = src po +endif ## Keep this list sync'd with acinclude.m4:GLIBCXX_CONFIGURE. -SUBDIRS = include libmath libsupc++ src po testsuite +SUBDIRS = include libmath libsupc++ $(hosted_source) testsuite # These rules are messy, but are hella worth it. doxygen: |