libbrandt/Makefile.am
Özgür Kesim d5d37b6314 Transcript generation and replay
test_brandt now generates transcripts of auctions in JSON form on
stdout.

replay is a program that reads such a transcript and replays the
auction.
2022-09-28 15:39:24 +02:00

42 lines
905 B
Makefile

## Makefile.am -- Process this file with automake to produce Makefile.in
SUBDIRS = doc
ACLOCAL_AMFLAGS = -I m4
lib_LTLIBRARIES = \
libbrandt.la
libbrandt_la_SOURCES = \
brandt.c \
crypto.c \
fp_priv.c \
fp_pub.c \
mp_priv.c \
mp_pub.c
libbrandt_la_LIBADD = \
-lgcrypt -lgpg-error -lgnunetutil
libbrandt_la_LDFLAGS = \
-version-info 0:0:0
noinst_PROGRAMS = \
bench \
replay
bench_SOURCES = bench.c
bench_LDADD = libbrandt.la -lgcrypt -lgpg-error -lgnunetutil
check_PROGRAMS = \
test_crypto \
test_brandt
test_crypto_SOURCES = test_crypto.c
test_crypto_LDADD = libbrandt.la -lgcrypt -lgpg-error -lgnunetutil
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
TESTS = $(check_PROGRAMS)