Add crypto/bytestring with autotools

This commit is contained in:
kinichiro
2021-12-11 21:00:55 +09:00
parent a3a03842f6
commit b10ff615eb
2 changed files with 16 additions and 5 deletions

View File

@@ -4,6 +4,7 @@ AM_CPPFLAGS += -DLIBRESSL_CRYPTO_INTERNAL
AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1
AM_CPPFLAGS += -I$(top_srcdir)/crypto/bn
AM_CPPFLAGS += -I$(top_srcdir)/crypto/bytestring
AM_CPPFLAGS += -I$(top_srcdir)/crypto/ec
AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdh
AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdsa
@@ -439,6 +440,12 @@ noinst_HEADERS += bn/bn_prime.h
libcrypto_la_SOURCES += buffer/buf_err.c
libcrypto_la_SOURCES += buffer/buf_str.c
libcrypto_la_SOURCES += buffer/buffer.c
noinst_HEADERS += bytestring/bytestring.h
# bytestring
libcrypto_la_SOURCES += bytestring/bs_ber.c
libcrypto_la_SOURCES += bytestring/bs_cbb.c
libcrypto_la_SOURCES += bytestring/bs_cbs.c
# camellia
libcrypto_la_SOURCES += camellia/cmll_cfb.c