diff options
author | Russ Allbery <rra@stanford.edu> | 2007-05-02 22:48:47 +0000 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2007-05-02 22:48:47 +0000 |
commit | eff9066ae3f888192ff1ff26f322b3412a419045 (patch) | |
tree | 6f84698646ef079c52980430e57a83035f887a36 /Makefile.am | |
parent | 7a7fc37d7c9672748f7df6d6b77e9b2e24145be0 (diff) |
Add the initial build infrastructure for the wallet Perl modules and
the superclass for Wallet::ACL. Add the Wallet::ACL::Krb5 ACL
verifier.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 7868046..47ba136 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,6 +8,7 @@ AUTOMAKE_OPTIONS = foreign subdir-objects EXTRA_DIST = docs/design-acl docs/design-api docs/design-schema \ docs/netdb-role-api docs/notes kasetkey/kasetkey.pod \ + perl/Wallet/ACL.pm perl/Wallet/ACL/Krb5.pm \ tests/TESTS tests/client/basic-t.in tests/data/README \ tests/data/cmd-fake tests/data/fake-keytab tests/data/wallet.conf @@ -31,8 +32,23 @@ warnings: $(MAKE) CFLAGS='$(WARNINGS)' $(MAKE) CFLAGS='$(WARNINGS)' $(check_PROGRAMS) +# Take appropriate actions in the Perl directory as well. +all-local: + cd perl && perl Makefile.PL + cd perl && $(MAKE) + +install-data-local: + cd perl && $(MAKE) install + +clean-local: + cd perl && $(MAKE) clean + +distclean-local: + cd perl && $(MAKE) distclean + # The bits below are for the test suite, not for the main package. check_PROGRAMS = tests/runtests check-local: $(check_PROGRAMS) cd tests && ./runtests TESTS + cd perl && $(MAKE) test |