aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2025-05-31 04:31:23 -0600
committerTheo Buehler <tb@openbsd.org>2025-05-31 04:32:47 -0600
commit3110f572954ecfd040d6c929a8010d94cdba24f0 (patch)
treeff4be438fc6bbc06be0c81d8a1c97f3e2af1b5ee
parent2f407aa2f3f94d8178914bca5afaac8eb5d54096 (diff)
downloadportable-3110f572954ecfd040d6c929a8010d94cdba24f0.tar.gz
portable-3110f572954ecfd040d6c929a8010d94cdba24f0.tar.bz2
portable-3110f572954ecfd040d6c929a8010d94cdba24f0.zip
Fix typos plus some automake appeasing
-rw-r--r--tests/Makefile.am9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 5582dd1..ca60b24 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -69,10 +69,6 @@ if HOST_X86_64
69AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/amd64/ 69AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/amd64/
70endif 70endif
71 71
72# XXX - should probably be in their own static lib
73TEST_HELPER_SRC = test.c test_util.c
74noinst_HEADER = test.h
75
76noinst_LTLIBRARIES = libtest.la 72noinst_LTLIBRARIES = libtest.la
77libtest_la_LIBADD = $(libcrypto_la_objects) 73libtest_la_LIBADD = $(libcrypto_la_objects)
78libtest_la_LIBADD += $(libcompat_la_objects) 74libtest_la_LIBADD += $(libcompat_la_objects)
@@ -91,6 +87,11 @@ check_PROGRAMS =
91EXTRA_DIST = CMakeLists.txt 87EXTRA_DIST = CMakeLists.txt
92DISTCLEANFILES = pidwraptest.txt 88DISTCLEANFILES = pidwraptest.txt
93 89
90# XXX - should probably be in their own static lib
91TEST_HELPER_SRC = test.c test_util.c
92noinst_HEADERS = test.h
93EXTRA_DIST += $(TEST_HELPER_SRC)
94
94# aeadtest 95# aeadtest
95TESTS += aeadtest.sh 96TESTS += aeadtest.sh
96check_PROGRAMS += aeadtest 97check_PROGRAMS += aeadtest