aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 0f9dd233772d6d23d0d6c32ab017201bc4d46fdb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
## 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

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

TESTS = $(check_PROGRAMS)