Commit ef5f59f6 by Ralf Wildenhues Committed by Ralf Wildenhues

Makefile.am: Fix most stamp rules to regenerate the links for all sources newer than the...

libstdc++-v3/
	* include/Makefile.am: Fix most stamp rules to regenerate
	the links for all sources newer than the stamp file.
	* include/Makefile.in: Regenerate.
	* Makefile.in: Likewise.
	* src/Makefile.in: Likewise.
	* doc/Makefile.in: Likewise.
	* po/Makefile.in: Likewise.
	* libmath/Makefile.in: Likewise.
	* libsupc++/Makefile.in: Likewise.
	* testsuite/Makefile.in: Likewise.

From-SVN: r134492
parent 49339fa4
2008-04-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* include/Makefile.am: Fix most stamp rules to regenerate
the links for all sources newer than the stamp file.
* include/Makefile.in: Regenerate.
* Makefile.in: Likewise.
* src/Makefile.in: Likewise.
* doc/Makefile.in: Likewise.
* po/Makefile.in: Likewise.
* libmath/Makefile.in: Likewise.
* libsupc++/Makefile.in: Likewise.
* testsuite/Makefile.in: Likewise.
2008-04-18 Paolo Bonzini <bonzini@gnu.org> 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/35457 PR bootstrap/35457
......
...@@ -54,6 +54,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \ ...@@ -54,6 +54,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \
$(top_srcdir)/../config/lib-prefix.m4 \ $(top_srcdir)/../config/lib-prefix.m4 \
$(top_srcdir)/../config/multi.m4 \ $(top_srcdir)/../config/multi.m4 \
$(top_srcdir)/../config/no-executables.m4 \ $(top_srcdir)/../config/no-executables.m4 \
$(top_srcdir)/../config/override.m4 \
$(top_srcdir)/../config/proginstall.m4 \ $(top_srcdir)/../config/proginstall.m4 \
$(top_srcdir)/../config/stdint.m4 \ $(top_srcdir)/../config/stdint.m4 \
$(top_srcdir)/../config/unwind_ipinfo.m4 \ $(top_srcdir)/../config/unwind_ipinfo.m4 \
......
...@@ -49,6 +49,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \ ...@@ -49,6 +49,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \
$(top_srcdir)/../config/lib-prefix.m4 \ $(top_srcdir)/../config/lib-prefix.m4 \
$(top_srcdir)/../config/multi.m4 \ $(top_srcdir)/../config/multi.m4 \
$(top_srcdir)/../config/no-executables.m4 \ $(top_srcdir)/../config/no-executables.m4 \
$(top_srcdir)/../config/override.m4 \
$(top_srcdir)/../config/proginstall.m4 \ $(top_srcdir)/../config/proginstall.m4 \
$(top_srcdir)/../config/stdint.m4 \ $(top_srcdir)/../config/stdint.m4 \
$(top_srcdir)/../config/unwind_ipinfo.m4 \ $(top_srcdir)/../config/unwind_ipinfo.m4 \
......
...@@ -858,72 +858,46 @@ allcreated = \ ...@@ -858,72 +858,46 @@ allcreated = \
# Here are the rules for building the headers # Here are the rules for building the headers
all-local: ${allstamped} ${allcreated} all-local: ${allstamped} ${allcreated}
# This rule is slightly different, in that we must change the name of the # Ignore errors from 'mkdir -p' to avoid parallel make failure on
# local file from std_foo.h to foo. # systems with broken mkdir. Call mkdir unconditionally because
# it is just as cheap to avoid going through the shell.
# Ignore errors from $(LN_S) because the links may already exist.
stamp-std: ${std_headers} stamp-std: ${std_headers}
@if [ ! -d "${std_builddir}" ]; then \ @-mkdir -p ${std_builddir}
mkdir -p ${std_builddir} ;\ @-cd ${std_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-std
if [ ! -f stamp-std ]; then \
(cd ${std_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-std
stamp-bits: ${bits_headers} stamp-bits: ${bits_headers}
@if [ ! -d "${bits_builddir}" ]; then \ @-mkdir -p ${bits_builddir}
mkdir -p ${bits_builddir} ;\ @-cd ${bits_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-bits
if [ ! -f stamp-bits ]; then \
(cd ${bits_builddir} && $(LN_S) $? . || true) ;\ stamp-c_base: ${c_base_headers}
fi ;\ @-mkdir -p ${c_base_builddir}
$(STAMP) stamp-bits @-cd ${c_base_builddir} && $(LN_S) $? . 2>/dev/null
@$(STAMP) stamp-c_base
stamp-c_base: ${c_base_headers}
@if [ ! -d "${c_base_builddir}" ]; then \
mkdir -p ${c_base_builddir} ;\
fi ;\
if [ ! -f stamp-c_base ]; then \
(cd ${c_base_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-c_base
stamp-c_base_extra: ${c_base_headers_extra} stamp-c_base_extra: ${c_base_headers_extra}
@if [ ! -d "${bits_builddir}" ]; then \ @-mkdir -p ${bits_builddir}
mkdir -p ${bits_builddir} ;\ @-cd ${bits_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-c_base_extra
if [ ! -f stamp-c_base_extra ]; then \
(cd ${bits_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-c_base_extra
stamp-c_compatibility: ${c_compatibility_headers_extra} stamp-c_compatibility: ${c_compatibility_headers_extra}
@if [ ! -d "${c_compatibility_builddir}" ]; then \ @-mkdir -p ${c_compatibility_builddir}
mkdir -p ${c_compatibility_builddir} ;\ @-if [ ! -z "${c_compatibility_headers_extra}" ]; then \
fi ;\ cd ${c_compatibility_builddir} && $(LN_S) $? . 2>/dev/null ;\
if [ ! -f stamp-c_compatibility ]; then \ fi
if [ ! -z "${c_compatibility_headers_extra}" ]; then \ @$(STAMP) stamp-c_compatibility
(cd ${c_compatibility_builddir} && $(LN_S) $? . || true) ;\
fi ;\
fi ;\
$(STAMP) stamp-c_compatibility
stamp-backward: ${backward_headers} stamp-backward: ${backward_headers}
@if [ ! -d "${backward_builddir}" ]; then \ @-mkdir -p ${backward_builddir}
mkdir -p ${backward_builddir} ;\ @-cd ${backward_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-backward
if [ ! -f stamp-backward ]; then \
(cd ${backward_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-backward
stamp-ext: ${ext_headers} stamp-ext: ${ext_headers}
@if [ ! -d "${ext_builddir}" ]; then \ @-mkdir -p ${ext_builddir}
mkdir -p ${ext_builddir} ;\ @-cd ${ext_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-ext
if [ ! -f stamp-ext ]; then \
(cd ${ext_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-ext
# Have to deal with nested include directories, gah! Strip off source # Have to deal with nested include directories, gah! Strip off source
# directory before making the link. # directory before making the link.
...@@ -977,52 +951,33 @@ stamp-pb: ...@@ -977,52 +951,33 @@ stamp-pb:
$(STAMP) stamp-pb $(STAMP) stamp-pb
stamp-tr1: ${tr1_headers} stamp-tr1: ${tr1_headers}
@if [ ! -d "${tr1_builddir}" ]; then \ @-mkdir -p ${tr1_builddir}
mkdir -p ${tr1_builddir} ;\ @-cd ${tr1_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-tr1
if [ ! -f stamp-tr1 ]; then \
(cd ${tr1_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-tr1
stamp-tr1-impl: ${tr1_impl_headers} stamp-tr1-impl: ${tr1_impl_headers}
@if [ ! -d "${tr1_impl_builddir}" ]; then \ @-mkdir -p ${tr1_impl_builddir}
mkdir -p ${tr1_impl_builddir} ;\ @-cd ${tr1_impl_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-tr1-impl
if [ ! -f stamp-tr1-impl ]; then \
(cd ${tr1_impl_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-tr1-impl
stamp-debug: ${debug_headers} stamp-debug: ${debug_headers}
@if [ ! -d "${debug_builddir}" ]; then \ @-mkdir -p ${debug_builddir}
mkdir -p ${debug_builddir} ;\ @-cd ${debug_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-debug
if [ ! -f stamp-debug ]; then \
(cd ${debug_builddir} && @LN_S@ $? . || true) ;\
fi ;\
$(STAMP) stamp-debug
stamp-parallel: ${parallel_headers} stamp-parallel: ${parallel_headers}
@if [ ! -d "${parallel_builddir}" ]; then \ @-mkdir -p ${parallel_builddir}
mkdir -p ${parallel_builddir} ;\ @-cd ${parallel_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-parallel
if [ ! -f stamp-parallel ]; then \
(cd ${parallel_builddir} && @LN_S@ $? . || true) ;\
fi ;\
$(STAMP) stamp-parallel
stamp-${host_alias}: stamp-${host_alias}:
@if [ ! -d ${host_builddir} ]; then \ @-mkdir -p ${host_builddir}
mkdir -p ${host_builddir} ;\ @$(STAMP) stamp-${host_alias}
fi ;\
$(STAMP) stamp-${host_alias}
# Host includes static. # Host includes static.
# XXX Missing dependency info for {host_headers_extra} # XXX Missing dependency info for {host_headers_extra}
stamp-host: ${host_headers} ${host_headers_noinst} stamp-${host_alias} stamp-host: ${host_headers} ${host_headers_noinst} stamp-${host_alias}
@if [ ! -f stamp-host ]; then \ @cd ${host_builddir} && {\
(cd ${host_builddir} ;\
$(LN_S) ${host_headers} . || true ;\ $(LN_S) ${host_headers} . || true ;\
$(LN_S) ${glibcxx_srcdir}/$(BASIC_FILE_H) basic_file.h || true ;\ $(LN_S) ${glibcxx_srcdir}/$(BASIC_FILE_H) basic_file.h || true ;\
$(LN_S) ${glibcxx_srcdir}/$(ALLOCATOR_H) c++allocator.h || true ;\ $(LN_S) ${glibcxx_srcdir}/$(ALLOCATOR_H) c++allocator.h || true ;\
...@@ -1031,8 +986,8 @@ stamp-host: ${host_headers} ${host_headers_noinst} stamp-${host_alias} ...@@ -1031,8 +986,8 @@ stamp-host: ${host_headers} ${host_headers_noinst} stamp-${host_alias}
$(LN_S) ${glibcxx_srcdir}/$(CLOCALE_INTERNAL_H) . || true ;\ $(LN_S) ${glibcxx_srcdir}/$(CLOCALE_INTERNAL_H) . || true ;\
$(LN_S) ${glibcxx_srcdir}/$(COMPATIBILITY_H) . || true ;\ $(LN_S) ${glibcxx_srcdir}/$(COMPATIBILITY_H) . || true ;\
$(LN_S) ${glibcxx_srcdir}/$(CMESSAGES_H) messages_members.h || true ;\ $(LN_S) ${glibcxx_srcdir}/$(CMESSAGES_H) messages_members.h || true ;\
$(LN_S) ${glibcxx_srcdir}/$(CTIME_H) time_members.h || true);\ $(LN_S) ${glibcxx_srcdir}/$(CTIME_H) time_members.h || true;\
fi ;\ } 2>/dev/null
$(STAMP) stamp-host $(STAMP) stamp-host
# Host includes dynamic. # Host includes dynamic.
......
...@@ -49,6 +49,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \ ...@@ -49,6 +49,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \
$(top_srcdir)/../config/lib-prefix.m4 \ $(top_srcdir)/../config/lib-prefix.m4 \
$(top_srcdir)/../config/multi.m4 \ $(top_srcdir)/../config/multi.m4 \
$(top_srcdir)/../config/no-executables.m4 \ $(top_srcdir)/../config/no-executables.m4 \
$(top_srcdir)/../config/override.m4 \
$(top_srcdir)/../config/proginstall.m4 \ $(top_srcdir)/../config/proginstall.m4 \
$(top_srcdir)/../config/stdint.m4 \ $(top_srcdir)/../config/stdint.m4 \
$(top_srcdir)/../config/unwind_ipinfo.m4 \ $(top_srcdir)/../config/unwind_ipinfo.m4 \
...@@ -1260,72 +1261,46 @@ uninstall-am: uninstall-info-am ...@@ -1260,72 +1261,46 @@ uninstall-am: uninstall-info-am
# Here are the rules for building the headers # Here are the rules for building the headers
all-local: ${allstamped} ${allcreated} all-local: ${allstamped} ${allcreated}
# This rule is slightly different, in that we must change the name of the # Ignore errors from 'mkdir -p' to avoid parallel make failure on
# local file from std_foo.h to foo. # systems with broken mkdir. Call mkdir unconditionally because
# it is just as cheap to avoid going through the shell.
# Ignore errors from $(LN_S) because the links may already exist.
stamp-std: ${std_headers} stamp-std: ${std_headers}
@if [ ! -d "${std_builddir}" ]; then \ @-mkdir -p ${std_builddir}
mkdir -p ${std_builddir} ;\ @-cd ${std_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-std
if [ ! -f stamp-std ]; then \
(cd ${std_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-std
stamp-bits: ${bits_headers} stamp-bits: ${bits_headers}
@if [ ! -d "${bits_builddir}" ]; then \ @-mkdir -p ${bits_builddir}
mkdir -p ${bits_builddir} ;\ @-cd ${bits_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-bits
if [ ! -f stamp-bits ]; then \
(cd ${bits_builddir} && $(LN_S) $? . || true) ;\ stamp-c_base: ${c_base_headers}
fi ;\ @-mkdir -p ${c_base_builddir}
$(STAMP) stamp-bits @-cd ${c_base_builddir} && $(LN_S) $? . 2>/dev/null
@$(STAMP) stamp-c_base
stamp-c_base: ${c_base_headers}
@if [ ! -d "${c_base_builddir}" ]; then \
mkdir -p ${c_base_builddir} ;\
fi ;\
if [ ! -f stamp-c_base ]; then \
(cd ${c_base_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-c_base
stamp-c_base_extra: ${c_base_headers_extra} stamp-c_base_extra: ${c_base_headers_extra}
@if [ ! -d "${bits_builddir}" ]; then \ @-mkdir -p ${bits_builddir}
mkdir -p ${bits_builddir} ;\ @-cd ${bits_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-c_base_extra
if [ ! -f stamp-c_base_extra ]; then \
(cd ${bits_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-c_base_extra
stamp-c_compatibility: ${c_compatibility_headers_extra} stamp-c_compatibility: ${c_compatibility_headers_extra}
@if [ ! -d "${c_compatibility_builddir}" ]; then \ @-mkdir -p ${c_compatibility_builddir}
mkdir -p ${c_compatibility_builddir} ;\ @-if [ ! -z "${c_compatibility_headers_extra}" ]; then \
fi ;\ cd ${c_compatibility_builddir} && $(LN_S) $? . 2>/dev/null ;\
if [ ! -f stamp-c_compatibility ]; then \ fi
if [ ! -z "${c_compatibility_headers_extra}" ]; then \ @$(STAMP) stamp-c_compatibility
(cd ${c_compatibility_builddir} && $(LN_S) $? . || true) ;\
fi ;\
fi ;\
$(STAMP) stamp-c_compatibility
stamp-backward: ${backward_headers} stamp-backward: ${backward_headers}
@if [ ! -d "${backward_builddir}" ]; then \ @-mkdir -p ${backward_builddir}
mkdir -p ${backward_builddir} ;\ @-cd ${backward_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-backward
if [ ! -f stamp-backward ]; then \
(cd ${backward_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-backward
stamp-ext: ${ext_headers} stamp-ext: ${ext_headers}
@if [ ! -d "${ext_builddir}" ]; then \ @-mkdir -p ${ext_builddir}
mkdir -p ${ext_builddir} ;\ @-cd ${ext_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-ext
if [ ! -f stamp-ext ]; then \
(cd ${ext_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-ext
# Have to deal with nested include directories, gah! Strip off source # Have to deal with nested include directories, gah! Strip off source
# directory before making the link. # directory before making the link.
...@@ -1379,52 +1354,33 @@ stamp-pb: ...@@ -1379,52 +1354,33 @@ stamp-pb:
$(STAMP) stamp-pb $(STAMP) stamp-pb
stamp-tr1: ${tr1_headers} stamp-tr1: ${tr1_headers}
@if [ ! -d "${tr1_builddir}" ]; then \ @-mkdir -p ${tr1_builddir}
mkdir -p ${tr1_builddir} ;\ @-cd ${tr1_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-tr1
if [ ! -f stamp-tr1 ]; then \
(cd ${tr1_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-tr1
stamp-tr1-impl: ${tr1_impl_headers} stamp-tr1-impl: ${tr1_impl_headers}
@if [ ! -d "${tr1_impl_builddir}" ]; then \ @-mkdir -p ${tr1_impl_builddir}
mkdir -p ${tr1_impl_builddir} ;\ @-cd ${tr1_impl_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-tr1-impl
if [ ! -f stamp-tr1-impl ]; then \
(cd ${tr1_impl_builddir} && $(LN_S) $? . || true) ;\
fi ;\
$(STAMP) stamp-tr1-impl
stamp-debug: ${debug_headers} stamp-debug: ${debug_headers}
@if [ ! -d "${debug_builddir}" ]; then \ @-mkdir -p ${debug_builddir}
mkdir -p ${debug_builddir} ;\ @-cd ${debug_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-debug
if [ ! -f stamp-debug ]; then \
(cd ${debug_builddir} && @LN_S@ $? . || true) ;\
fi ;\
$(STAMP) stamp-debug
stamp-parallel: ${parallel_headers} stamp-parallel: ${parallel_headers}
@if [ ! -d "${parallel_builddir}" ]; then \ @-mkdir -p ${parallel_builddir}
mkdir -p ${parallel_builddir} ;\ @-cd ${parallel_builddir} && $(LN_S) $? . 2>/dev/null
fi ;\ @$(STAMP) stamp-parallel
if [ ! -f stamp-parallel ]; then \
(cd ${parallel_builddir} && @LN_S@ $? . || true) ;\
fi ;\
$(STAMP) stamp-parallel
stamp-${host_alias}: stamp-${host_alias}:
@if [ ! -d ${host_builddir} ]; then \ @-mkdir -p ${host_builddir}
mkdir -p ${host_builddir} ;\ @$(STAMP) stamp-${host_alias}
fi ;\
$(STAMP) stamp-${host_alias}
# Host includes static. # Host includes static.
# XXX Missing dependency info for {host_headers_extra} # XXX Missing dependency info for {host_headers_extra}
stamp-host: ${host_headers} ${host_headers_noinst} stamp-${host_alias} stamp-host: ${host_headers} ${host_headers_noinst} stamp-${host_alias}
@if [ ! -f stamp-host ]; then \ @cd ${host_builddir} && {\
(cd ${host_builddir} ;\
$(LN_S) ${host_headers} . || true ;\ $(LN_S) ${host_headers} . || true ;\
$(LN_S) ${glibcxx_srcdir}/$(BASIC_FILE_H) basic_file.h || true ;\ $(LN_S) ${glibcxx_srcdir}/$(BASIC_FILE_H) basic_file.h || true ;\
$(LN_S) ${glibcxx_srcdir}/$(ALLOCATOR_H) c++allocator.h || true ;\ $(LN_S) ${glibcxx_srcdir}/$(ALLOCATOR_H) c++allocator.h || true ;\
...@@ -1433,8 +1389,8 @@ stamp-host: ${host_headers} ${host_headers_noinst} stamp-${host_alias} ...@@ -1433,8 +1389,8 @@ stamp-host: ${host_headers} ${host_headers_noinst} stamp-${host_alias}
$(LN_S) ${glibcxx_srcdir}/$(CLOCALE_INTERNAL_H) . || true ;\ $(LN_S) ${glibcxx_srcdir}/$(CLOCALE_INTERNAL_H) . || true ;\
$(LN_S) ${glibcxx_srcdir}/$(COMPATIBILITY_H) . || true ;\ $(LN_S) ${glibcxx_srcdir}/$(COMPATIBILITY_H) . || true ;\
$(LN_S) ${glibcxx_srcdir}/$(CMESSAGES_H) messages_members.h || true ;\ $(LN_S) ${glibcxx_srcdir}/$(CMESSAGES_H) messages_members.h || true ;\
$(LN_S) ${glibcxx_srcdir}/$(CTIME_H) time_members.h || true);\ $(LN_S) ${glibcxx_srcdir}/$(CTIME_H) time_members.h || true;\
fi ;\ } 2>/dev/null
$(STAMP) stamp-host $(STAMP) stamp-host
# Host includes dynamic. # Host includes dynamic.
......
...@@ -49,6 +49,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \ ...@@ -49,6 +49,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \
$(top_srcdir)/../config/lib-prefix.m4 \ $(top_srcdir)/../config/lib-prefix.m4 \
$(top_srcdir)/../config/multi.m4 \ $(top_srcdir)/../config/multi.m4 \
$(top_srcdir)/../config/no-executables.m4 \ $(top_srcdir)/../config/no-executables.m4 \
$(top_srcdir)/../config/override.m4 \
$(top_srcdir)/../config/proginstall.m4 \ $(top_srcdir)/../config/proginstall.m4 \
$(top_srcdir)/../config/stdint.m4 \ $(top_srcdir)/../config/stdint.m4 \
$(top_srcdir)/../config/unwind_ipinfo.m4 \ $(top_srcdir)/../config/unwind_ipinfo.m4 \
......
...@@ -51,6 +51,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \ ...@@ -51,6 +51,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \
$(top_srcdir)/../config/lib-prefix.m4 \ $(top_srcdir)/../config/lib-prefix.m4 \
$(top_srcdir)/../config/multi.m4 \ $(top_srcdir)/../config/multi.m4 \
$(top_srcdir)/../config/no-executables.m4 \ $(top_srcdir)/../config/no-executables.m4 \
$(top_srcdir)/../config/override.m4 \
$(top_srcdir)/../config/proginstall.m4 \ $(top_srcdir)/../config/proginstall.m4 \
$(top_srcdir)/../config/stdint.m4 \ $(top_srcdir)/../config/stdint.m4 \
$(top_srcdir)/../config/unwind_ipinfo.m4 \ $(top_srcdir)/../config/unwind_ipinfo.m4 \
......
...@@ -49,6 +49,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \ ...@@ -49,6 +49,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \
$(top_srcdir)/../config/lib-prefix.m4 \ $(top_srcdir)/../config/lib-prefix.m4 \
$(top_srcdir)/../config/multi.m4 \ $(top_srcdir)/../config/multi.m4 \
$(top_srcdir)/../config/no-executables.m4 \ $(top_srcdir)/../config/no-executables.m4 \
$(top_srcdir)/../config/override.m4 \
$(top_srcdir)/../config/proginstall.m4 \ $(top_srcdir)/../config/proginstall.m4 \
$(top_srcdir)/../config/stdint.m4 \ $(top_srcdir)/../config/stdint.m4 \
$(top_srcdir)/../config/unwind_ipinfo.m4 \ $(top_srcdir)/../config/unwind_ipinfo.m4 \
......
...@@ -50,6 +50,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \ ...@@ -50,6 +50,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \
$(top_srcdir)/../config/lib-prefix.m4 \ $(top_srcdir)/../config/lib-prefix.m4 \
$(top_srcdir)/../config/multi.m4 \ $(top_srcdir)/../config/multi.m4 \
$(top_srcdir)/../config/no-executables.m4 \ $(top_srcdir)/../config/no-executables.m4 \
$(top_srcdir)/../config/override.m4 \
$(top_srcdir)/../config/proginstall.m4 \ $(top_srcdir)/../config/proginstall.m4 \
$(top_srcdir)/../config/stdint.m4 \ $(top_srcdir)/../config/stdint.m4 \
$(top_srcdir)/../config/unwind_ipinfo.m4 \ $(top_srcdir)/../config/unwind_ipinfo.m4 \
......
...@@ -49,6 +49,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \ ...@@ -49,6 +49,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/enable.m4 \
$(top_srcdir)/../config/lib-prefix.m4 \ $(top_srcdir)/../config/lib-prefix.m4 \
$(top_srcdir)/../config/multi.m4 \ $(top_srcdir)/../config/multi.m4 \
$(top_srcdir)/../config/no-executables.m4 \ $(top_srcdir)/../config/no-executables.m4 \
$(top_srcdir)/../config/override.m4 \
$(top_srcdir)/../config/proginstall.m4 \ $(top_srcdir)/../config/proginstall.m4 \
$(top_srcdir)/../config/stdint.m4 \ $(top_srcdir)/../config/stdint.m4 \
$(top_srcdir)/../config/unwind_ipinfo.m4 \ $(top_srcdir)/../config/unwind_ipinfo.m4 \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment