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-08-10 15:24:57 +02:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
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 \
|
2016-09-29 18:22:21 +02:00
|
|
|
fp_priv.c \
|
|
|
|
fp_pub.c \
|
2016-10-15 20:33:21 +02:00
|
|
|
mp_priv.c \
|
2016-11-22 03:17:01 +01:00
|
|
|
mp_pub.c \
|
2016-06-19 22:37:31 +02:00
|
|
|
util.c
|
2016-06-12 01:14:56 +02:00
|
|
|
|
2016-06-01 09:59:39 +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 = \
|
2016-08-16 20:58:20 +02:00
|
|
|
test_crypto \
|
|
|
|
test_brandt
|
2016-06-12 20:52:22 +02:00
|
|
|
|
|
|
|
test_crypto_SOURCES = test_crypto.c
|
2016-07-13 14:14:04 +02:00
|
|
|
test_crypto_LDADD = libbrandt.la -lgcrypt -lgpg-error -lgnunetutil
|
2016-06-12 20:52:22 +02:00
|
|
|
|
2016-08-16 20:58:20 +02:00
|
|
|
test_brandt_SOURCES = test_brandt.c
|
|
|
|
test_brandt_LDADD = libbrandt.la -lgcrypt -lgpg-error -lgnunetutil
|
|
|
|
|
2016-06-12 20:52:22 +02:00
|
|
|
TESTS = $(check_PROGRAMS)
|