diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 12:01:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 12:01:37 +0000 |
commit | de848d9e9146434817c65d74d1d0313e9d729462 (patch) | |
tree | dcbd0efb229b17f696f7195671f05b354b4f70fc /modules/Makefile.am | |
parent | Initial commit. (diff) | |
download | pam-de848d9e9146434817c65d74d1d0313e9d729462.tar.xz pam-de848d9e9146434817c65d74d1d0313e9d729462.zip |
Adding upstream version 1.4.0.upstream/1.4.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'modules/Makefile.am')
-rw-r--r-- | modules/Makefile.am | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/modules/Makefile.am b/modules/Makefile.am new file mode 100644 index 0000000..c57ccc4 --- /dev/null +++ b/modules/Makefile.am @@ -0,0 +1,105 @@ +# +# Copyright (c) 2005, 2006, 2008 Thorsten Kukuk <kukuk@thkukuk.de> +# + +if COND_BUILD_PAM_CRACKLIB + MAYBE_PAM_CRACKLIB = pam_cracklib +endif + +if COND_BUILD_PAM_KEYINIT + MAYBE_PAM_KEYINIT = pam_keyinit +endif + +if COND_BUILD_PAM_LASTLOG + MAYBE_PAM_LASTLOG = pam_lastlog +endif + +if COND_BUILD_PAM_NAMESPACE + MAYBE_PAM_NAMESPACE = pam_namespace +endif + +if COND_BUILD_PAM_RHOSTS + MAYBE_PAM_RHOSTS = pam_rhosts +endif + +if COND_BUILD_PAM_SELINUX + MAYBE_PAM_SELINUX = pam_selinux +endif + +if COND_BUILD_PAM_SEPERMIT + MAYBE_PAM_SEPERMIT = pam_sepermit +endif + +if COND_BUILD_PAM_SETQUOTA + MAYBE_PAM_SETQUOTA = pam_setquota +endif + +if COND_BUILD_PAM_TALLY + MAYBE_PAM_TALLY = pam_tally +endif + +if COND_BUILD_PAM_TALLY2 + MAYBE_PAM_TALLY2 = pam_tally2 +endif + +if COND_BUILD_PAM_TTY_AUDIT + MAYBE_PAM_TTY_AUDIT = pam_tty_audit +endif + +if COND_BUILD_PAM_USERDB + MAYBE_PAM_USERDB = pam_userdb +endif + +SUBDIRS := \ + pam_access \ + $(MAYBE_PAM_CRACKLIB) \ + pam_debug \ + pam_deny \ + pam_echo \ + pam_env \ + pam_exec \ + pam_faildelay \ + pam_faillock \ + pam_filter \ + pam_ftp \ + pam_group \ + pam_issue \ + $(MAYBE_PAM_KEYINIT) \ + $(MAYBE_PAM_LASTLOG) \ + pam_limits \ + pam_listfile \ + pam_localuser \ + pam_loginuid \ + pam_mail \ + pam_mkhomedir \ + pam_motd \ + $(MAYBE_PAM_NAMESPACE) \ + pam_nologin \ + pam_permit \ + pam_pwhistory \ + $(MAYBE_PAM_RHOSTS) \ + pam_rootok \ + pam_securetty \ + $(MAYBE_PAM_SELINUX) \ + $(MAYBE_PAM_SEPERMIT) \ + $(MAYBE_PAM_SETQUOTA) \ + pam_shells \ + pam_stress \ + pam_succeed_if \ + $(MAYBE_PAM_TALLY) \ + $(MAYBE_PAM_TALLY2) \ + pam_time \ + pam_timestamp \ + $(MAYBE_PAM_TTY_AUDIT) \ + pam_umask \ + pam_unix \ + $(MAYBE_PAM_USERDB) \ + pam_usertype \ + pam_warn \ + pam_wheel \ + pam_xauth \ + # + +CLEANFILES = *~ + +EXTRA_DIST = modules.map |