commit 7b1832d0114f7a19a2f9bb28a6f6ce29f4ec306f Author: Nick Mathewson nickm@torproject.org Date: Sun Jul 1 10:08:54 2018 -0400
Add make targets to show static libraries.
These might make it easier for people to link our stuff, and keep their scripts more robust. --- Makefile.am | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/Makefile.am b/Makefile.am index e77c8a92e..fe2479a64 100644 --- a/Makefile.am +++ b/Makefile.am @@ -404,3 +404,9 @@ show-distdir-testlog: cat $(distdir)/_build/sub/$(TEST_SUITE_LOG); \ else \ cat $(distdir)/_build/$(TEST_SUITE_LOG); fi + +show-libs: + @echo $(TOR_INTERNAL_LIBS) + +show-testing-libs: + @echo $(TOR_INTERNAL_TESTING_LIBS)
tor-commits@lists.torproject.org