build-sys: parallelize 'exported' target

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2013-11-12 19:02:28 -05:00
parent a23873387a
commit 9173a3082f
2 changed files with 6 additions and 4 deletions

1
.gitignore vendored
View file

@ -2,6 +2,7 @@
/defined
/undefined
/exported
/exported-*
/TAGS
/accelerometer
/ata_id

View file

@ -4667,10 +4667,11 @@ valgrind-tests: $(TESTS)
libtool --mode=execute valgrind -q --leak-check=full --max-stackframe=4194400 --error-exitcode=55 $(builddir)/$$f ; \
done
exported: $(lib_LTLIBRARIES)
$(AM_V_GEN)for f in $(lib_LTLIBRARIES:.la=.so) ; do \
nm -g --defined-only $(builddir)/.libs/"$$f" 2>&1 /dev/null | grep " T " | cut -d" " -f3 ; \
done > $@
exported-%: %
$(AM_V_GEN)nm -g --defined-only $(builddir)/.libs/$(<:.la=.so) 2>&1 /dev/null | grep " T " | cut -d" " -f3 > $@
exported: $(addprefix exported-, $(lib_LTLIBRARIES))
$(AM_V_GEN)cat $^ > $@
check-api-docs: exported man
$(AM_V_GEN)for symbol in `cat exported` ; do \