aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r--tests/Makefile.am41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 190e4eb..5388126 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -19,6 +19,47 @@ AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl
19AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl/compat 19AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl/compat
20AM_CPPFLAGS += -D_PATH_SSL_CA_FILE=\"$(top_srcdir)/cert.pem\" 20AM_CPPFLAGS += -D_PATH_SSL_CA_FILE=\"$(top_srcdir)/cert.pem\"
21 21
22# arch
23if HOST_AARCH64
24AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/aarch64/
25endif
26
27if HOST_ARM
28AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/arm/
29endif
30
31if HOST_I386
32AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/i386/
33endif
34
35# XXX - do we still need this?
36if HOST_MIPS
37endif
38
39if HOST_MIPS64
40AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/mips64/
41endif
42
43if HOST_POWERPC
44AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/powerpc/
45endif
46
47if HOST_POWERPC64
48AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/powerpc64/
49endif
50
51if HOST_RISCV64
52AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/riscv64/
53endif
54
55if HOST_SPARC64
56AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/sparc64/
57endif
58
59if HOST_X86_64
60AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/amd64/
61endif
62
22noinst_LTLIBRARIES = libtest.la 63noinst_LTLIBRARIES = libtest.la
23libtest_la_LIBADD = $(libcrypto_la_objects) 64libtest_la_LIBADD = $(libcrypto_la_objects)
24libtest_la_LIBADD += $(libcompat_la_objects) 65libtest_la_LIBADD += $(libcompat_la_objects)