diff options
author | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-17 20:23:12 +0000 |
---|---|---|
committer | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-17 20:23:12 +0000 |
commit | 2eb169cd8166ba8342c6783d1d21c0848c7fd156 (patch) | |
tree | bc40445978d8406152440975e0c56f5763886180 /libstdc++-v3/fragment.am | |
parent | 049cadd673cd20c803614319a0075e2925acd3ce (diff) | |
download | linaro-gcc-2eb169cd8166ba8342c6783d1d21c0848c7fd156.tar.gz linaro-gcc-2eb169cd8166ba8342c6783d1d21c0848c7fd156.tar.bz2 linaro-gcc-2eb169cd8166ba8342c6783d1d21c0848c7fd156.zip |
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70522 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/fragment.am')
-rw-r--r-- | libstdc++-v3/fragment.am | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libstdc++-v3/fragment.am b/libstdc++-v3/fragment.am new file mode 100644 index 00000000000..de98817d742 --- /dev/null +++ b/libstdc++-v3/fragment.am @@ -0,0 +1,25 @@ + +## This is used in all Makefile.am's except for libmath's. Set defaults here. + +MAINT_CHARSET = latin1 + +mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs +PWD_COMMAND = $${PWDCMD-pwd} + +toolexecdir = $(glibcxx_toolexecdir) +toolexeclibdir = $(glibcxx_toolexeclibdir) + +# These bits are all figured out from configure. Look in acinclude.m4 +# or configure.ac to see how they are set. See GLIBCXX_EXPORT_FLAGS. +CONFIG_CXXFLAGS = \ + $(SECTION_FLAGS) $(EXTRA_CXX_FLAGS) +WARN_CXXFLAGS = \ + $(WARN_FLAGS) $(WERROR) -fdiagnostics-show-location=once + +# -I/-D flags to pass when compiling. +AM_CPPFLAGS = $(GLIBCXX_INCLUDES) + + + + +## vim:ft=automake |