diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-12-06 12:07:58 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-03 11:29:47 -0500 |
commit | d907fca29b188be5c8eaf01d086bac754bace400 (patch) | |
tree | e2731bf1ce066d8aedc7a5d1dd19bfe15b433546 /src/tools | |
parent | ef13bf44327464c5600fdba12726fce00156d2b2 (diff) | |
download | tor-d907fca29b188be5c8eaf01d086bac754bace400.tar tor-d907fca29b188be5c8eaf01d086bac754bace400.tar.gz |
Make libcurve25519_donna get built as a .a
This lets us give it compiler flags differing from the rest of
libor-crypto.a
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/include.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/include.am b/src/tools/include.am index 7337eff16..610864f68 100644 --- a/src/tools/include.am +++ b/src/tools/include.am @@ -8,12 +8,14 @@ src_tools_tor_resolve_LDADD = src/common/libor.a @TOR_LIB_MATH@ @TOR_LIB_WS32@ src_tools_tor_gencert_SOURCES = src/tools/tor-gencert.c src_tools_tor_gencert_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ src_tools_tor_gencert_LDADD = src/common/libor.a src/common/libor-crypto.a \ + $(LIBDONNA) \ @TOR_LIB_MATH@ @TOR_ZLIB_LIBS@ @TOR_OPENSSL_LIBS@ \ @TOR_LIB_WS32@ @TOR_LIB_GDI@ src_tools_tor_checkkey_SOURCES = src/tools/tor-checkkey.c src_tools_tor_checkkey_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ src_tools_tor_checkkey_LDADD = src/common/libor.a src/common/libor-crypto.a \ + $(LIBDONNA) \ @TOR_LIB_MATH@ @TOR_ZLIB_LIBS@ @TOR_OPENSSL_LIBS@ \ @TOR_LIB_WS32@ @TOR_LIB_GDI@ |