diff options
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 41 |
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 | |||
19 | AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl/compat | 19 | AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl/compat |
20 | AM_CPPFLAGS += -D_PATH_SSL_CA_FILE=\"$(top_srcdir)/cert.pem\" | 20 | AM_CPPFLAGS += -D_PATH_SSL_CA_FILE=\"$(top_srcdir)/cert.pem\" |
21 | 21 | ||
22 | # arch | ||
23 | if HOST_AARCH64 | ||
24 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/aarch64/ | ||
25 | endif | ||
26 | |||
27 | if HOST_ARM | ||
28 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/arm/ | ||
29 | endif | ||
30 | |||
31 | if HOST_I386 | ||
32 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/i386/ | ||
33 | endif | ||
34 | |||
35 | # XXX - do we still need this? | ||
36 | if HOST_MIPS | ||
37 | endif | ||
38 | |||
39 | if HOST_MIPS64 | ||
40 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/mips64/ | ||
41 | endif | ||
42 | |||
43 | if HOST_POWERPC | ||
44 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/powerpc/ | ||
45 | endif | ||
46 | |||
47 | if HOST_POWERPC64 | ||
48 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/powerpc64/ | ||
49 | endif | ||
50 | |||
51 | if HOST_RISCV64 | ||
52 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/riscv64/ | ||
53 | endif | ||
54 | |||
55 | if HOST_SPARC64 | ||
56 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/sparc64/ | ||
57 | endif | ||
58 | |||
59 | if HOST_X86_64 | ||
60 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/amd64/ | ||
61 | endif | ||
62 | |||
22 | noinst_LTLIBRARIES = libtest.la | 63 | noinst_LTLIBRARIES = libtest.la |
23 | libtest_la_LIBADD = $(libcrypto_la_objects) | 64 | libtest_la_LIBADD = $(libcrypto_la_objects) |
24 | libtest_la_LIBADD += $(libcompat_la_objects) | 65 | libtest_la_LIBADD += $(libcompat_la_objects) |