blob: d13e66231eabfecf0d0b747e09daaaf8d1ebdf5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
## Makefile.am -- Process this file with automake to produce Makefile.in
SUBDIRS = doc
lib_LTLIBRARIES = \
libbrandt.la
libbrandt_la_SOURCES = \
crypto.c \
util.c
libbrandt_la_LIBADD = \
-lpari
libbrandt_la_LDFLAGS = \
-version-info 0:0:0
|