diff options
author | Theo Buehler <tb@openbsd.org> | 2024-04-25 12:45:38 -0600 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2024-04-25 12:45:38 -0600 |
commit | d0221daff6a2dac582cf0239eb0b1930b8f8c1d3 (patch) | |
tree | 385efa440300089d84fff96a0d5e663f25c228e8 /tests/Makefile.am | |
parent | a8bd03a588988394b825bdcf71c9e4381b78213f (diff) | |
download | portable-d0221daff6a2dac582cf0239eb0b1930b8f8c1d3.tar.gz portable-d0221daff6a2dac582cf0239eb0b1930b8f8c1d3.tar.bz2 portable-d0221daff6a2dac582cf0239eb0b1930b8f8c1d3.zip |
link crypto_test to the build
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 3aa7489..2f14f8f 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -6,6 +6,7 @@ include $(top_srcdir)/Makefile.am.common | |||
6 | 6 | ||
7 | AM_CPPFLAGS += -DLIBRESSL_CRYPTO_INTERNAL | 7 | AM_CPPFLAGS += -DLIBRESSL_CRYPTO_INTERNAL |
8 | 8 | ||
9 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/ | ||
9 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1 | 10 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1 |
10 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/bio | 11 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/bio |
11 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/bn | 12 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/bn |
@@ -308,6 +309,11 @@ TESTS += constraints | |||
308 | check_PROGRAMS += constraints | 309 | check_PROGRAMS += constraints |
309 | constraints_SOURCES = constraints.c | 310 | constraints_SOURCES = constraints.c |
310 | 311 | ||
312 | # crypto_test | ||
313 | TESTS += crypto_test | ||
314 | check_PROGRAMS += crypto_test | ||
315 | crypto_test_SOURCES = crypto_test.c | ||
316 | |||
311 | # cttest | 317 | # cttest |
312 | TESTS += cttest | 318 | TESTS += cttest |
313 | check_PROGRAMS += cttest | 319 | check_PROGRAMS += cttest |