2017-09-08 16:15:15 +00:00
|
|
|
AUTOMAKE_OPTIONS = nostdinc
|
|
|
|
|
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_builddir)/include \
|
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
-I$(includedir)
|
|
|
|
|
|
|
|
|
|
|
|
bin_PROGRAMS = \
|
2019-08-14 08:44:06 +00:00
|
|
|
bf01 \
|
|
|
|
sha01
|
2017-09-08 16:15:15 +00:00
|
|
|
|
|
|
|
|
2020-08-06 11:42:39 +00:00
|
|
|
AM_LDFLAGS = -L../../lib/cry -L../../lib/si -L../../lib/cmn
|
2020-08-15 18:48:13 +00:00
|
|
|
LDADD = -lqsecry -lqsesi -lqsecmn $(LIBM)
|
|
|
|
|
2017-09-08 16:15:15 +00:00
|
|
|
if WIN32
|
|
|
|
LDADD += $(UNICOWS_LIBS)
|
|
|
|
endif
|
|
|
|
|
|
|
|
bf01_SOURCES = bf01.c
|
2019-08-14 08:44:06 +00:00
|
|
|
sha01_SOURCES = sha01.c
|