cryb-to/lib/cipher/Makefile.am
Dag-Erling Smørgrav c671da9b1c Implement the Salsa family of stream ciphers.
Note that we only have unit tests for Salsa20.
2017-04-06 19:51:45 +02:00

16 lines
290 B
Makefile

AM_CPPFLAGS = -I$(top_srcdir)/include
lib_LTLIBRARIES = libcryb-cipher.la
libcryb_cipher_la_SOURCES = \
cryb_aes.c \
cryb_chacha.c \
cryb_rc4.c \
cryb_salsa.c \
\
cryb_cipher.c
libcryb_cipher_la_LIBADD = \
$(top_builddir)/lib/core/libcryb-core.la
pkgconfig_DATA = cryb-cipher.pc