libbrandt/Makefile.am
Christian Grothoff 35c18237ab link
2016-07-13 14:14:04 +02:00

25 lines
458 B
Makefile

## Makefile.am -- Process this file with automake to produce Makefile.in
SUBDIRS = doc
lib_LTLIBRARIES = \
libbrandt.la
libbrandt_la_SOURCES = \
brandt.c \
crypto.c \
util.c
libbrandt_la_LIBADD = \
-lgcrypt -lgpg-error -lgnunetutil
libbrandt_la_LDFLAGS = \
-version-info 0:0:0
check_PROGRAMS = \
test_crypto
test_crypto_SOURCES = test_crypto.c
test_crypto_LDADD = libbrandt.la -lgcrypt -lgpg-error -lgnunetutil
TESTS = $(check_PROGRAMS)