libbrandt/Makefile.am

42 lines
905 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-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 \
fp_priv.c \
fp_pub.c \
mp_priv.c \
2016-12-02 09:43:04 +01:00
mp_pub.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
2017-02-14 13:36:54 +01:00
noinst_PROGRAMS = \
bench \
replay
2017-02-14 13:36:54 +01:00
bench_SOURCES = bench.c
bench_LDADD = libbrandt.la -lgcrypt -lgpg-error -lgnunetutil
2016-06-12 20:52:22 +02:00
check_PROGRAMS = \
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
test_brandt_SOURCES = test_brandt.c
test_brandt_LDADD = libbrandt.la -lgcrypt -ljansson -lgpg-error -lgnunetutil -lgnunetjson
replay_SOURCES = replay.c
replay_LDADD = libbrandt.la -lgcrypt -ljansson -lgpg-error -lgnunetutil -lgnunetjson
2016-06-12 20:52:22 +02:00
TESTS = $(check_PROGRAMS)