diff options
author | Brent Cook <bcook@openbsd.org> | 2014-10-29 15:46:20 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-10-30 10:55:30 -0500 |
commit | 72c1e56b382547c74e16a67d1d2b1b7ce774c56d (patch) | |
tree | 3c97531f4bd3d039de5114357af964f016190d1b /tests | |
parent | ccaf9cdd9c161c80c27907f7782d86cfe9625621 (diff) | |
download | portable-72c1e56b382547c74e16a67d1d2b1b7ce774c56d.tar.gz portable-72c1e56b382547c74e16a67d1d2b1b7ce774c56d.tar.bz2 portable-72c1e56b382547c74e16a67d1d2b1b7ce774c56d.zip |
enable -lcrypto -lssl with all test programs directly.
This removes the need to specify each one individually.
ok doug@
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am.tpl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/Makefile.am.tpl b/tests/Makefile.am.tpl index 06d48c1..52df298 100644 --- a/tests/Makefile.am.tpl +++ b/tests/Makefile.am.tpl | |||
@@ -3,6 +3,9 @@ include $(top_srcdir)/Makefile.am.common | |||
3 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes | 3 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes |
4 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1 | 4 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1 |
5 | 5 | ||
6 | LDADD = $(top_builddir)/ssl/libssl.la | ||
7 | LDADD += $(top_builddir)/crypto/libcrypto.la | ||
8 | |||
6 | TESTS = | 9 | TESTS = |
7 | check_PROGRAMS = | 10 | check_PROGRAMS = |
8 | EXTRA_DIST = | 11 | EXTRA_DIST = |