blob: 8107e97b67b399c1c761cc0957db69635410915c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
lib_LTLIBRARIES = \
libcommon.la
libcommon_la_SOURCES = \
d3des.c \
file.c \
list.c \
log.c \
os_calls.c \
ssl_calls.c \
thread_calls.c \
trans.c
libcommon_la_LIBADD = \
-lcrypto \
-lpthread
|