From be2f28747270f7368d6023ab09aa86488804f60e Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Fri, 8 Aug 1997 22:54:15 +0000 Subject: [PATCH] new file git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2837 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/otp/Makefile.am | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lib/otp/Makefile.am diff --git a/lib/otp/Makefile.am b/lib/otp/Makefile.am new file mode 100644 index 000000000..623647efc --- /dev/null +++ b/lib/otp/Makefile.am @@ -0,0 +1,20 @@ +# $Id$ + +AUTOMAKE_OPTIONS = no-dependencies foreign + +INCLUDES = -I$(top_builddir)/include + +noinst_PROGRAMS = otptest + +otptest_LDADD = -L. -lotp -L$(top_builddir)/lib/des -ldes -L$(top_builddir)/lib/roken -lroken + +lib_LIBRARIES = libotp.a + +libotp_a_SOURCES = \ + otp.c \ + otp_challenge.c \ + otp_db.c \ + otp_md.c \ + otp_parse.c \ + otp_print.c \ + otp_verify.c