diff options
Diffstat (limited to 'crypto/Makefile.am')
-rw-r--r-- | crypto/Makefile.am | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index cb463fb..4ca8d5f 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
@@ -359,55 +359,74 @@ noinst_HEADERS += bn/bn_prime.h | |||
359 | noinst_HEADERS += bn/s2n_bignum.h | 359 | noinst_HEADERS += bn/s2n_bignum.h |
360 | noinst_HEADERS += bn/s2n_bignum_internal.h | 360 | noinst_HEADERS += bn/s2n_bignum_internal.h |
361 | 361 | ||
362 | # bn/arch | 362 | # arch, bn/arch |
363 | if HOST_AARCH64 | 363 | if HOST_AARCH64 |
364 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/aarch64/ | ||
364 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/aarch64/ | 365 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/aarch64/ |
365 | endif | 366 | endif |
367 | noinst_HEADERS += arch/aarch64/crypto_arch.h | ||
366 | noinst_HEADERS += bn/arch/aarch64/bn_arch.h | 368 | noinst_HEADERS += bn/arch/aarch64/bn_arch.h |
367 | 369 | ||
368 | if HOST_ARM | 370 | if HOST_ARM |
371 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/arm/ | ||
369 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/arm/ | 372 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/arm/ |
370 | endif | 373 | endif |
374 | noinst_HEADERS += arch/arm/crypto_arch.h | ||
371 | noinst_HEADERS += bn/arch/arm/bn_arch.h | 375 | noinst_HEADERS += bn/arch/arm/bn_arch.h |
372 | 376 | ||
373 | if HOST_I386 | 377 | if HOST_I386 |
378 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/i386/ | ||
374 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/i386/ | 379 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/i386/ |
375 | endif | 380 | endif |
381 | noinst_HEADERS += arch/i386/crypto_arch.h | ||
376 | noinst_HEADERS += bn/arch/i386/bn_arch.h | 382 | noinst_HEADERS += bn/arch/i386/bn_arch.h |
377 | 383 | ||
384 | # XXX - do we still need this? | ||
378 | if HOST_MIPS | 385 | if HOST_MIPS |
379 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/mips/ | 386 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/mips/ |
380 | endif | 387 | endif |
381 | noinst_HEADERS += bn/arch/mips/bn_arch.h | 388 | noinst_HEADERS += bn/arch/mips/bn_arch.h |
382 | 389 | ||
383 | if HOST_MIPS64 | 390 | if HOST_MIPS64 |
391 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/mips64/ | ||
384 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/mips64/ | 392 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/mips64/ |
385 | endif | 393 | endif |
394 | noinst_HEADERS += arch/mips64/crypto_arch.h | ||
386 | noinst_HEADERS += bn/arch/mips64/bn_arch.h | 395 | noinst_HEADERS += bn/arch/mips64/bn_arch.h |
387 | 396 | ||
388 | if HOST_POWERPC | 397 | if HOST_POWERPC |
398 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/powerpc/ | ||
389 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/powerpc/ | 399 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/powerpc/ |
390 | endif | 400 | endif |
401 | noinst_HEADERS += arch/powerpc/crypto_arch.h | ||
391 | noinst_HEADERS += bn/arch/powerpc/bn_arch.h | 402 | noinst_HEADERS += bn/arch/powerpc/bn_arch.h |
392 | 403 | ||
393 | if HOST_POWERPC64 | 404 | if HOST_POWERPC64 |
405 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/powerpc64/ | ||
394 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/powerpc64/ | 406 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/powerpc64/ |
395 | endif | 407 | endif |
408 | noinst_HEADERS += arch/powerpc64/crypto_arch.h | ||
396 | noinst_HEADERS += bn/arch/powerpc64/bn_arch.h | 409 | noinst_HEADERS += bn/arch/powerpc64/bn_arch.h |
397 | 410 | ||
398 | if HOST_RISCV64 | 411 | if HOST_RISCV64 |
412 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/riscv64/ | ||
399 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/riscv64/ | 413 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/riscv64/ |
400 | endif | 414 | endif |
415 | noinst_HEADERS += arch/riscv64/crypto_arch.h | ||
401 | noinst_HEADERS += bn/arch/riscv64/bn_arch.h | 416 | noinst_HEADERS += bn/arch/riscv64/bn_arch.h |
402 | 417 | ||
403 | if HOST_SPARC64 | 418 | if HOST_SPARC64 |
419 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/sparc64/ | ||
404 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/sparc64/ | 420 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/sparc64/ |
405 | endif | 421 | endif |
422 | noinst_HEADERS += arch/sparc64/crypto_arch.h | ||
406 | noinst_HEADERS += bn/arch/sparc64/bn_arch.h | 423 | noinst_HEADERS += bn/arch/sparc64/bn_arch.h |
407 | 424 | ||
408 | if HOST_X86_64 | 425 | if HOST_X86_64 |
426 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/amd64/ | ||
409 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/amd64/ | 427 | libcrypto_la_CPPFLAGS += -I$(top_srcdir)/crypto/bn/arch/amd64/ |
410 | endif | 428 | endif |
429 | noinst_HEADERS += arch/amd64/crypto_arch.h | ||
411 | noinst_HEADERS += bn/arch/amd64/bn_arch.h | 430 | noinst_HEADERS += bn/arch/amd64/bn_arch.h |
412 | 431 | ||
413 | # buffer | 432 | # buffer |