aboutsummaryrefslogtreecommitdiff
path: root/ssl/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'ssl/Makefile.am')
-rw-r--r--ssl/Makefile.am50
1 files changed, 50 insertions, 0 deletions
diff --git a/ssl/Makefile.am b/ssl/Makefile.am
index a7a7d72..f9a66a3 100644
--- a/ssl/Makefile.am
+++ b/ssl/Makefile.am
@@ -114,3 +114,53 @@ noinst_HEADERS += tls12_internal.h
114noinst_HEADERS += tls13_internal.h 114noinst_HEADERS += tls13_internal.h
115noinst_HEADERS += tls13_handshake.h 115noinst_HEADERS += tls13_handshake.h
116noinst_HEADERS += tls13_record.h 116noinst_HEADERS += tls13_record.h
117
118# arch
119if HOST_AARCH64
120libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/aarch64/
121endif
122noinst_HEADERS += $(top_srcdir)/crypto/arch/aarch64/crypto_arch.h
123
124if HOST_ARM
125libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/arm/
126endif
127noinst_HEADERS += $(top_srcdir)/crypto/arch/arm/crypto_arch.h
128
129if HOST_I386
130libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/i386/
131endif
132noinst_HEADERS += $(top_srcdir)/crypto/arch/i386/crypto_arch.h
133
134# XXX - do we still need this?
135if HOST_MIPS
136endif
137
138if HOST_MIPS64
139libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/mips64/
140endif
141noinst_HEADERS += $(top_srcdir)/crypto/arch/mips64/crypto_arch.h
142
143if HOST_POWERPC
144libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/powerpc/
145endif
146noinst_HEADERS += $(top_srcdir)/crypto/arch/powerpc/crypto_arch.h
147
148if HOST_POWERPC64
149libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/powerpc64/
150endif
151noinst_HEADERS += $(top_srcdir)/crypto/arch/powerpc64/crypto_arch.h
152
153if HOST_RISCV64
154libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/riscv64/
155endif
156noinst_HEADERS += $(top_srcdir)/crypto/arch/riscv64/crypto_arch.h
157
158if HOST_SPARC64
159libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/sparc64/
160endif
161noinst_HEADERS += $(top_srcdir)/crypto/arch/sparc64/crypto_arch.h
162
163if HOST_X86_64
164libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/amd64/
165endif
166noinst_HEADERS += $(top_srcdir)/crypto/arch/amd64/crypto_arch.h