mirror of
https://github.com/cryb-to/cryb-to.git
synced 2024-11-22 22:02:03 +00:00
19 lines
366 B
Makefile
19 lines
366 B
Makefile
AM_CPPFLAGS = -I$(top_srcdir)/include
|
|
|
|
lib_LTLIBRARIES = libcryb-enc.la
|
|
|
|
libcryb_enc_la_SOURCES = \
|
|
cryb_base32_decode.c \
|
|
cryb_base32_encode.c \
|
|
cryb_base64_decode.c \
|
|
cryb_base64_encode.c \
|
|
cryb_percent_decode.c \
|
|
cryb_percent_encode.c \
|
|
\
|
|
cryb_enc.c
|
|
|
|
dist_man3_MANS = \
|
|
cryb_percent.3
|
|
|
|
libcryb_enc_la_LIBADD = \
|
|
$(top_builddir)/lib/core/libcryb-core.la
|