diff options
Diffstat (limited to 'ssl/Makefile.am')
-rw-r--r-- | ssl/Makefile.am | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/ssl/Makefile.am b/ssl/Makefile.am index f9a66a3..3096749 100644 --- a/ssl/Makefile.am +++ b/ssl/Makefile.am | |||
@@ -1,3 +1,18 @@ | |||
1 | # | ||
2 | # Copyright (c) 2014 Brent Cook | ||
3 | # | ||
4 | # Permission to use, copy, modify, and distribute this software for any | ||
5 | # purpose with or without fee is hereby granted, provided that the above | ||
6 | # copyright notice and this permission notice appear in all copies. | ||
7 | # | ||
8 | # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
9 | # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
10 | # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
11 | # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
12 | # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
13 | # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
14 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
15 | |||
1 | include $(top_srcdir)/Makefile.am.common | 16 | include $(top_srcdir)/Makefile.am.common |
2 | 17 | ||
3 | -include $(abs_top_builddir)/crypto/libcrypto_la_objects.mk | 18 | -include $(abs_top_builddir)/crypto/libcrypto_la_objects.mk |
@@ -26,7 +41,7 @@ EXTRA_libssl_la_DEPENDENCIES = libssl_la_objects.mk | |||
26 | 41 | ||
27 | libssl_la_objects.mk: Makefile | 42 | libssl_la_objects.mk: Makefile |
28 | @echo "libssl_la_objects= $(libssl_la_OBJECTS)" \ | 43 | @echo "libssl_la_objects= $(libssl_la_OBJECTS)" \ |
29 | | sed 's/ */ $$\(abs_top_builddir\)\/ssl\//g' \ | 44 | | sed 's/ */ $$\(top_builddir\)\/ssl\//g' \ |
30 | > libssl_la_objects.mk | 45 | > libssl_la_objects.mk |
31 | 46 | ||
32 | .PHONY: remove_bs_objects | 47 | .PHONY: remove_bs_objects |
@@ -131,9 +146,15 @@ libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/i386/ | |||
131 | endif | 146 | endif |
132 | noinst_HEADERS += $(top_srcdir)/crypto/arch/i386/crypto_arch.h | 147 | noinst_HEADERS += $(top_srcdir)/crypto/arch/i386/crypto_arch.h |
133 | 148 | ||
134 | # XXX - do we still need this? | 149 | if HOST_LOONGARCH64 |
150 | libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/loongarch64/ | ||
151 | endif | ||
152 | noinst_HEADERS += $(top_srcdir)/crypto/arch/loongarch64/crypto_arch.h | ||
153 | |||
135 | if HOST_MIPS | 154 | if HOST_MIPS |
155 | libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/mips/ | ||
136 | endif | 156 | endif |
157 | noinst_HEADERS += $(top_srcdir)/crypto/arch/mips/crypto_arch.h | ||
137 | 158 | ||
138 | if HOST_MIPS64 | 159 | if HOST_MIPS64 |
139 | libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/mips64/ | 160 | libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/mips64/ |