libbrandt/Makefile.am

25 lines
445 B
Makefile
Raw Normal View History

2016-06-01 01:08:43 +02:00
## Makefile.am -- Process this file with automake to produce Makefile.in
2016-06-12 00:26:05 +02:00
SUBDIRS = doc
2016-06-01 08:35:51 +02:00
lib_LTLIBRARIES = \
libbrandt.la
libbrandt_la_SOURCES = \
2016-06-12 20:52:22 +02:00
brandt.c \
2016-06-12 01:14:56 +02:00
crypto.c \
util.c
2016-06-12 01:14:56 +02:00
libbrandt_la_LIBADD = \
2016-07-13 14:01:24 +02:00
-lgcrypt -lgpg-error -lgnunetutil
2016-06-01 15:01:20 +02:00
libbrandt_la_LDFLAGS = \
-version-info 0:0:0
2016-06-12 20:52:22 +02:00
check_PROGRAMS = \
test_crypto
test_crypto_SOURCES = test_crypto.c
test_crypto_LDADD = libbrandt.la -lgcrypt -lgpg-error
TESTS = $(check_PROGRAMS)