]> eyrie.org Git - kerberos/krb5-strength.git/blobdiff - Makefile.am
Fix various character class check mistakes, add test suite
[kerberos/krb5-strength.git] / Makefile.am
index f863f630c4a8cab9a74a2078c51752d7f32ae6a9..74708c5499ca5577530c3a0b9c554ed04d5020f9 100644 (file)
@@ -1,22 +1,24 @@
 # Automake makefile for krb5-strength.
 #
-# Written by Russ Allbery <rra@stanford.edu>
+# Written by Russ Allbery <eagle@eyrie.org>
 # Copyright 2007, 2009, 2010, 2012, 2013
 #     The Board of Trustees of the Leland Stanford Junior University
 #
 # See LICENSE for licensing terms.
 
 ACLOCAL_AMFLAGS = -I m4
-EXTRA_DIST = .gitignore LICENSE autogen cracklib/HISTORY cracklib/LICENCE   \
-       cracklib/README cracklib/genrules.pl cracklib/mkdict tests/HOWTO    \
-       tests/TESTS tests/data/krb5.conf tests/data/make-krb5-conf          \
-       tests/data/passwords tests/data/perl.conf tests/data/perlcriticrc   \
-       tests/data/perltidyrc tests/data/wordlist tests/docs/pod-spelling-t \
-       tests/docs/pod-t tests/perl/critic-t tests/perl/minimum-version-t   \
-       tests/perl/strict-t tests/tap/libtap.sh tests/tap/perl/Test/RRA.pm  \
-       tests/tap/perl/Test/RRA/Config.pm                                   \
-       tests/tap/perl/Test/RRA/Automake.pm tests/tools/cdbmake-wordlist    \
-       tests/tools/heimdal-strength-t tools/heimdal-strength.pod
+EXTRA_DIST = .gitignore LICENSE autogen cracklib/HISTORY cracklib/LICENCE  \
+       cracklib/README cracklib/genrules.pl cracklib/mkdict tests/HOWTO   \
+       tests/TESTS tests/data/krb5.conf tests/data/make-krb5-conf         \
+       tests/data/passwords tests/data/perl.conf tests/data/perlcriticrc  \
+       tests/data/perltidyrc tests/data/wordlist tests/data/wordlist.cdb  \
+       tests/docs/pod-spelling-t tests/docs/pod-t tests/perl/critic-t     \
+       tests/perl/minimum-version-t tests/perl/strict-t                   \
+       tests/tap/libtap.sh tests/tap/perl/Test/RRA.pm                     \
+       tests/tap/perl/Test/RRA/Config.pm                                  \
+       tests/tap/perl/Test/RRA/Automake.pm tests/tools/cdbmake-wordlist-t \
+       tests/tools/heimdal-strength-t tests/util/xmalloc-t                \
+       tools/heimdal-strength.pod
 
 # Do this globally.  Everything needs to find the Kerberos headers and
 # libraries, and if we're using the system CrackLib or libcdb, add its
@@ -53,9 +55,9 @@ moduledir = $(libdir)/krb5/plugins/pwqual
 
 # Rules for building the password strength plugin.
 module_LTLIBRARIES = plugin/strength.la
-plugin_strength_la_SOURCES = plugin/cdb.c plugin/config.c plugin/cracklib.c \
-       plugin/error.c plugin/general.c plugin/heimdal.c plugin/internal.h  \
-       plugin/mit.c
+plugin_strength_la_SOURCES = plugin/cdb.c plugin/classes.c plugin/config.c \
+       plugin/cracklib.c plugin/error.c plugin/general.c plugin/heimdal.c \
+       plugin/internal.h plugin/mit.c plugin/principal.c plugin/vector.c
 plugin_strength_la_LDFLAGS = -module -avoid-version
 if EMBEDDED_CRACKLIB
     plugin_strength_la_LIBADD = cracklib/libcracklib.la
@@ -67,8 +69,9 @@ plugin_strength_la_LIBADD += portable/libportable.la $(KRB5_LIBS) $(CDB_LIBS)
 # The Heimdal external check program.
 bin_PROGRAMS = tools/heimdal-strength
 tools_heimdal_strength_CFLAGS = $(AM_CFLAGS)
-tools_heimdal_strength_SOURCES = plugin/cdb.c plugin/config.c              \
-       plugin/cracklib.c plugin/error.c plugin/general.c plugin/internal.h \
+tools_heimdal_strength_SOURCES = plugin/cdb.c plugin/classes.c           \
+       plugin/config.c plugin/cracklib.c plugin/error.c plugin/general.c \
+       plugin/internal.h plugin/principal.c plugin/vector.c              \
        tools/heimdal-strength.c
 if EMBEDDED_CRACKLIB
     tools_heimdal_strength_LDADD = cracklib/libcracklib.la