
openssl's libcrypto or krb4's libdes that has all the required functionality (md4, md5, sha1, des, rc4). if there is no such library, the included lib/des is built. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10519 ec53bebd-3082-4978-b11e-865c3cabbd6b
30 lines
470 B
Makefile
30 lines
470 B
Makefile
# $Id$
|
|
|
|
include $(top_srcdir)/Makefile.am.common
|
|
|
|
INCLUDES += $(INCLUDE_des)
|
|
|
|
noinst_PROGRAMS = otptest
|
|
|
|
check_PROGRAMS = otptest
|
|
|
|
otptest_LDADD = libotp.la
|
|
|
|
include_HEADERS = otp.h
|
|
|
|
lib_LTLIBRARIES = libotp.la
|
|
libotp_la_LDFLAGS = -version-info 1:2:1
|
|
libotp_la_LIBADD = $(LIB_des) $(LIB_roken) $(LIB_NDBM)
|
|
|
|
libotp_la_SOURCES = \
|
|
otp.c \
|
|
otp_challenge.c \
|
|
otp_db.c \
|
|
otp_md.c \
|
|
otp_parse.c \
|
|
otp_print.c \
|
|
otp_verify.c \
|
|
otp_locl.h \
|
|
otp_md.h \
|
|
roken_rename.h
|