diff options
Diffstat (limited to 'libstdc++-v3/include/Makefile.in')
-rw-r--r-- | libstdc++-v3/include/Makefile.in | 36 |
1 files changed, 4 insertions, 32 deletions
diff --git a/libstdc++-v3/include/Makefile.in b/libstdc++-v3/include/Makefile.in index 778b0c0445a..82cdd922049 100644 --- a/libstdc++-v3/include/Makefile.in +++ b/libstdc++-v3/include/Makefile.in @@ -848,25 +848,6 @@ tr1_headers = \ ${tr1_srcdir}/wchar.h \ ${tr1_srcdir}/wctype.h -tr1_impl_srcdir = ${glibcxx_srcdir}/include/tr1_impl -tr1_impl_builddir = ./tr1_impl -tr1_impl_headers = \ - ${tr1_impl_srcdir}/array \ - ${tr1_impl_srcdir}/boost_sp_counted_base.h \ - ${tr1_impl_srcdir}/cctype \ - ${tr1_impl_srcdir}/cfenv \ - ${tr1_impl_srcdir}/cinttypes \ - ${tr1_impl_srcdir}/cmath \ - ${tr1_impl_srcdir}/complex \ - ${tr1_impl_srcdir}/cstdint \ - ${tr1_impl_srcdir}/cstdio \ - ${tr1_impl_srcdir}/cstdlib \ - ${tr1_impl_srcdir}/cwchar \ - ${tr1_impl_srcdir}/cwctype \ - ${tr1_impl_srcdir}/regex \ - ${tr1_impl_srcdir}/type_traits \ - ${tr1_impl_srcdir}/utility - decimal_srcdir = ${glibcxx_srcdir}/include/decimal decimal_builddir = ./decimal decimal_headers = \ @@ -1133,9 +1114,9 @@ PCHFLAGS = -x c++-header -nostdinc++ $(CXXFLAGS) # CLEANFILES and all-local are kept up-to-date. allstamped = \ stamp-std stamp-bits stamp-c_base stamp-c_compatibility \ - stamp-backward stamp-ext stamp-pb stamp-tr1 stamp-tr1-impl \ - stamp-decimal stamp-debug stamp-parallel stamp-profile \ - stamp-profile-impl stamp-host + stamp-backward stamp-ext stamp-pb stamp-tr1 stamp-decimal \ + stamp-debug stamp-parallel stamp-profile stamp-profile-impl \ + stamp-host # List of all files that are created by explicit building, editing, or @@ -1406,11 +1387,6 @@ stamp-tr1: ${tr1_headers} @-cd ${tr1_builddir} && $(LN_S) $? . 2>/dev/null @$(STAMP) stamp-tr1 -stamp-tr1-impl: ${tr1_impl_headers} - @-mkdir -p ${tr1_impl_builddir} - @-cd ${tr1_impl_builddir} && $(LN_S) $? . 2>/dev/null - @$(STAMP) stamp-tr1-impl - stamp-decimal: ${decimal_headers} @-mkdir -p ${decimal_builddir} @-cd ${decimal_builddir} && $(LN_S) $? . 2>/dev/null @@ -1629,9 +1605,6 @@ install-headers: $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${tr1_builddir} for file in ${tr1_headers}; do \ $(INSTALL_DATA) $${file} $(DESTDIR)${gxx_include_dir}/${tr1_builddir}; done - $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${tr1_impl_builddir} - for file in ${tr1_impl_headers}; do \ - $(INSTALL_DATA) $${file} $(DESTDIR)${gxx_include_dir}/${tr1_impl_builddir}; done $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${decimal_builddir} for file in ${decimal_headers}; do \ $(INSTALL_DATA) $${file} $(DESTDIR)${gxx_include_dir}/${decimal_builddir}; done @@ -1675,12 +1648,11 @@ clean-local: # developer tries to create them via make in the include build # directory. (This is more of an example of how this kind of rule can # be made.) -.PRECIOUS: $(std_headers) $(c_base_headers) $(tr1_headers) $(tr1_impl_headers) +.PRECIOUS: $(std_headers) $(c_base_headers) $(tr1_headers) $(decimal_headers) $(ext_headers) $(std_headers): ; @: $(c_base_headers): ; @: $(tr1_headers): ; @: -$(tr1_impl_headers): ; @: $(decimal_headers): ; @: $(ext_headers): ; @: |