2017-08-28 14:22:02 +00:00
|
|
|
AUTOMAKE_OPTIONS = nostdinc
|
|
|
|
|
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_builddir)/include \
|
|
|
|
-I$(top_srcdir)/include
|
|
|
|
|
|
|
|
#noinst_HEADERS =
|
|
|
|
|
|
|
|
lib_LTLIBRARIES = libqsecry.la
|
|
|
|
libqsecry_la_SOURCES = \
|
2017-09-08 16:15:15 +00:00
|
|
|
blowfish.c \
|
2019-08-15 08:25:17 +00:00
|
|
|
hmac.c \
|
2017-09-08 16:15:15 +00:00
|
|
|
kseed.c \
|
2019-08-13 09:56:26 +00:00
|
|
|
md5.c \
|
2019-08-14 08:44:06 +00:00
|
|
|
sha1.c \
|
|
|
|
sha2.c
|
2017-08-28 14:22:02 +00:00
|
|
|
|
|
|
|
libqsecry_la_CFLAGS =
|
|
|
|
libqsecry_la_LDFLAGS = -L../cmn -version-info 1:0:0 -no-undefined
|
|
|
|
libqsecry_la_LIBADD = -lqsecmn
|
2019-06-30 05:00:30 +00:00
|
|
|
libqsecry_la_DEPENDENCIES = ../../lib/cmn/libqsecmn.la
|