diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | Makefile.in | 4 |
3 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2008-08-13 Frank Ch. Eigler <fche@elastic.org> + + * Makefile.am (stamp-elfutils): Override build-elfutils' + bin_PROGRAMS to not bother build binaries we're not using. + * Makefile.in: Regenerated. + 2008-08-12 Frank Ch. Eigler <fche@elastic.org> * buildrun.cxx (compile_pass): Add ugly kbuild hack for hand-built diff --git a/Makefile.am b/Makefile.am index e6a5654c..05da9fad 100644 --- a/Makefile.am +++ b/Makefile.am @@ -85,9 +85,9 @@ stap_LDFLAGS += -Llib-elfutils -Wl,-rpath-link,lib-elfutils \ BUILT_SOURCES += stamp-elfutils CLEANFILES += stamp-elfutils stamp-elfutils: config.status - $(MAKE) $(AM_MAKEFLAGS) -C build-elfutils all + $(MAKE) $(AM_MAKEFLAGS) -C build-elfutils all bin_PROGRAMS= for dir in libelf libebl libdw libdwfl backends; do \ - $(MAKE) $(AM_MAKEFLAGS) -C build-elfutils/$$dir install; \ + $(MAKE) $(AM_MAKEFLAGS) -C build-elfutils/$$dir bin_PROGRAMS= install; \ done touch $@ stap_DEPENDENCIES = lib-elfutils/libdw.so diff --git a/Makefile.in b/Makefile.in index 4ed771e8..9de49415 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1530,9 +1530,9 @@ cscope: (echo -q ; git ls-files '*.cxx' '*.c' '*.h' | grep -v '^testsuite' ) > cscope.files && \ cscope -b -q @BUILD_ELFUTILS_TRUE@stamp-elfutils: config.status -@BUILD_ELFUTILS_TRUE@ $(MAKE) $(AM_MAKEFLAGS) -C build-elfutils all +@BUILD_ELFUTILS_TRUE@ $(MAKE) $(AM_MAKEFLAGS) -C build-elfutils all bin_PROGRAMS= @BUILD_ELFUTILS_TRUE@ for dir in libelf libebl libdw libdwfl backends; do \ -@BUILD_ELFUTILS_TRUE@ $(MAKE) $(AM_MAKEFLAGS) -C build-elfutils/$$dir install; \ +@BUILD_ELFUTILS_TRUE@ $(MAKE) $(AM_MAKEFLAGS) -C build-elfutils/$$dir bin_PROGRAMS= install; \ @BUILD_ELFUTILS_TRUE@ done @BUILD_ELFUTILS_TRUE@ touch $@ @BUILD_ELFUTILS_TRUE@lib-elfutils/libdw.so: stamp-elfutils ; |