X-Git-Url: http://www.average.org/gitweb/?p=pam_pcsc_cr.git;a=blobdiff_plain;f=Makefile.am;h=80ab22d6e4d69de06394441607a4590bd7d3e87a;hp=d6eeb62c8d38f72119b1bfc80935f92cb42ede06;hb=852dfc60feda9313c12310d646e66baef9fb83b2;hpb=3bbb37e0ef1e77e9a93b7be7fb506bbbdd6a0400 diff --git a/Makefile.am b/Makefile.am index d6eeb62..80ab22d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,35 +1,45 @@ # $Id: Makefile.am 295 2005-05-13 14:58:27Z crosser $ -AUTOMAKE_OPTIONS = foreign +AUTOMAKE_OPTIONS = foreign no-dist-gzip dist-xz ACLOCAL_AMFLAGS = -I m4 libdir = $(PAMDIR) DEFS = -DDEBUG_PAM -DPAM_DEBUG @DEFS@ noinst_HEADERS = pcsc_cr.h token.h crypto_if.h crypto.h serial.h authobj.h \ - authfile.h + authfile.h base64.h -EXTRA_LTLIBRARIES = libpcsc_cr.la +noinst_LTLIBRARIES = libpcsc_cr.la libpcsc_cr_la_SOURCES = authfile.c authobj.c serial.c crypto.c pcsc_cr.c \ - ykneo.c + ykneo.c base64.c EXTRA_libpcsc_cr_la_SOURCES = ossl_crypto.c tom_crypto.c gnu_crypto.c libpcsc_cr_la_LIBADD = @CRYPTO_OBJS@ libpcsc_cr_la_DEPENDENCIES = @CRYPTO_OBJS@ lib_LTLIBRARIES = pam_pcsc_cr.la +pam_pcsc_cr_la_LIBTOOLFLAGS = --tag=disable-static pam_pcsc_cr_la_LDFLAGS = -module -avoid-version pam_pcsc_cr_la_LIBADD = libpcsc_cr.la bin_PROGRAMS = pam_cr_setup pam_cr_setup_LDADD = libpcsc_cr.la -check_PROGRAMS = test_auth test_serial test_crypto test_chalresp +man_MANS = pam_cr_setup.8 + +check_PROGRAMS = test_auth test_serial test_crypto test_chalresp test_base64 test_auth_LDADD = libpcsc_cr.la test_serial_LDADD = libpcsc_cr.la test_crypto_LDADD = libpcsc_cr.la test_chalresp_LDADD = libpcsc_cr.la +test_base64_LDADD = libpcsc_cr.la -EXTRA_DIST = autogen.sh README_CR +EXTRA_DIST = autogen.sh README.md auth-data-structure.svg -TESTS = test_auth test_serial test_crypto test_chalresp +TESTS = test_auth test_serial test_crypto test_chalresp test_base64 XFAIL_TESTS = test_chalresp + +html: README.html +README.html: README.md auth-data-structure.svg + pandoc -f markdown -t html5 --self-contained -o README.html README.md +clean-local: + rm -f README.html