cryb-to/lib/oath/Makefile.am
Dag-Erling Smørgrav 48fc358df7 Major cleanup and API overhaul.
- The API has been redesigned so the caller is now responsible for allocating storage.
- A few more macros and typedefs have been added to clean up the namespace.
- Key parameter validation has been strengthened.
2018-04-26 01:31:35 +02:00

26 lines
590 B
Makefile

AM_CPPFLAGS = -I$(top_srcdir)/include
lib_LTLIBRARIES = libcryb-oath.la
libcryb_oath_la_SOURCES = \
cryb_oath_hotp.c \
cryb_oath_totp.c \
\
cryb_oath_key_create.c \
cryb_oath_key_destroy.c \
cryb_oath_key_dummy.c \
cryb_oath_key_from_uri.c \
cryb_oath_key_to_uri.c \
cryb_oath_mode.c \
\
cryb_oath.c
libcryb_oath_la_LIBADD = \
$(top_builddir)/lib/digest/libcryb-digest.la \
$(top_builddir)/lib/enc/libcryb-enc.la \
$(top_builddir)/lib/mac/libcryb-mac.la \
$(top_builddir)/lib/rand/libcryb-rand.la \
$(top_builddir)/lib/core/libcryb-core.la
pkgconfig_DATA = cryb-oath.pc