mirror of
https://github.com/cryb-to/cryb-to.git
synced 2024-11-23 14:15:44 +00:00
c671da9b1c
Note that we only have unit tests for Salsa20.
16 lines
290 B
Makefile
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
|