mirror of
https://github.com/linux-pam/linux-pam.git
synced 2024-11-27 11:43:38 +08:00
modules/*/Makefile.am: list prerequisites of README target uniformly
There is no need to list prerequisites of README targets manually as all README targets depend on $(XMLS). The change is performed automatically using the following script: sed -i 's/^README: pam_.*/README: $(XMLS)/' modules/*/Makefile.am * modules/pam_access/Makefile.am (README): Replace pam_access.8.xml and access.conf.5.xml with $(XMLS). * modules/pam_cracklib/Makefile.am (README): Replace pam_cracklib.8.xml with $(XMLS). * modules/pam_debug/Makefile.am (README): Replace pam_debug.8.xml with $(XMLS). * modules/pam_deny/Makefile.am (README): Replace pam_deny.8.xml with $(XMLS). * modules/pam_echo/Makefile.am (README): Replace pam_echo.8.xml with $(XMLS). * modules/pam_env/Makefile.am (README): Replace pam_env.8.xml and pam_env.conf.5.xml with $(XMLS). * modules/pam_exec/Makefile.am (README): Replace pam_exec.8.xml with $(XMLS). * modules/pam_faildelay/Makefile.am (README): Replace pam_faildelay.8.xml with $(XMLS). * modules/pam_filter/Makefile.am (README): Replace pam_filter.8.xml with $(XMLS). * modules/pam_ftp/Makefile.am (README): Replace pam_ftp.8.xml with $(XMLS). * modules/pam_group/Makefile.am (README): Replace pam_group.8.xml and group.conf.5.xml with $(XMLS). * modules/pam_issue/Makefile.am (README): Replace pam_issue.8.xml with $(XMLS). * modules/pam_keyinit/Makefile.am (README): Replace pam_keyinit.8.xml with $(XMLS). * modules/pam_lastlog/Makefile.am (README): Replace pam_lastlog.8.xml with $(XMLS). * modules/pam_limits/Makefile.am (README): Replace pam_limits.8.xml and limits.conf.5.xml with $(XMLS). * modules/pam_listfile/Makefile.am (README): Replace pam_listfile.8.xml with $(XMLS). * modules/pam_localuser/Makefile.am (README): Replace pam_localuser.8.xml with $(XMLS). * modules/pam_loginuid/Makefile.am (README): Replace pam_loginuid.8.xml with $(XMLS). * modules/pam_mail/Makefile.am (README): Replace pam_mail.8.xml with $(XMLS). * modules/pam_mkhomedir/Makefile.am (README): Replace pam_mkhomedir.8.xml with $(XMLS). * modules/pam_motd/Makefile.am (README): Replace pam_motd.8.xml with $(XMLS). * modules/pam_namespace/Makefile.am (README): Replace pam_namespace.8.xml, namespace.conf.5.xml, and pam_namespace_helper.8.xml with $(XMLS). * modules/pam_nologin/Makefile.am (README): Replace pam_nologin.8.xml with $(XMLS). * modules/pam_permit/Makefile.am (README): Replace pam_permit.8.xml with $(XMLS). * modules/pam_pwhistory/Makefile.am (README): Replace pam_pwhistory.8.xml with $(XMLS). * modules/pam_rhosts/Makefile.am (README): Replace pam_rhosts.8.xml with $(XMLS). * modules/pam_rootok/Makefile.am (README): Replace pam_rootok.8.xml with $(XMLS). * modules/pam_securetty/Makefile.am (README): Replace pam_securetty.8.xml with $(XMLS). * modules/pam_selinux/Makefile.am (README): Replace pam_selinux.8.xml with $(XMLS). * modules/pam_sepermit/Makefile.am (README): Replace pam_sepermit.8.xml with $(XMLS). * modules/pam_setquota/Makefile.am (README): Replace pam_setquota.8.xml with $(XMLS). * modules/pam_shells/Makefile.am (README): Replace pam_shells.8.xml with $(XMLS). * modules/pam_succeed_if/Makefile.am (README): Replace pam_succeed_if.8.xml with $(XMLS). * modules/pam_tally/Makefile.am (README): Replace pam_tally.8.xml with $(XMLS). * modules/pam_tally2/Makefile.am (README): Replace pam_tally2.8.xml with $(XMLS). * modules/pam_time/Makefile.am (README): Replace pam_time.8.xml and time.conf.5.xml with $(XMLS). * modules/pam_timestamp/Makefile.am (README): Replace pam_timestamp.8.xml with $(XMLS). * modules/pam_tty_audit/Makefile.am (README): Replace pam_tty_audit.8.xml with $(XMLS). * modules/pam_umask/Makefile.am (README): Replace pam_umask.8.xml with $(XMLS). * modules/pam_unix/Makefile.am (README): Replace pam_unix.8.xml with $(XMLS). * modules/pam_userdb/Makefile.am (README): Replace pam_userdb.8.xml with $(XMLS). * modules/pam_usertype/Makefile.am (README): Replace pam_usertype.8.xml with $(XMLS). * modules/pam_warn/Makefile.am (README): Replace pam_warn.8.xml with $(XMLS). * modules/pam_wheel/Makefile.am (README): Replace pam_wheel.8.xml with $(XMLS). * modules/pam_xauth/Makefile.am (README): Replace pam_xauth.8.xml with $(XMLS).
This commit is contained in:
parent
b94608b25a
commit
bd849daab0
@ -33,7 +33,7 @@ if ENABLE_REGENERATE_MAN
|
||||
|
||||
noinst_DATA = README
|
||||
|
||||
README: pam_access.8.xml access.conf.5.xml
|
||||
README: $(XMLS)
|
||||
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ securelib_LTLIBRARIES = pam_cracklib.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_cracklib.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ TESTS = tst-pam_debug
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_debug.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -30,7 +30,7 @@ if ENABLE_REGENERATE_MAN
|
||||
|
||||
noinst_DATA = README
|
||||
|
||||
README: pam_deny.8.xml
|
||||
README: $(XMLS)
|
||||
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -28,7 +28,7 @@ pam_echo_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_echo.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
||||
|
@ -31,7 +31,7 @@ sysconf_DATA = environment
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_env.8.xml pam_env.conf.5.xml
|
||||
README: $(XMLS)
|
||||
environment.5: pam_env.conf.5.xml
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -30,7 +30,7 @@ if ENABLE_REGENERATE_MAN
|
||||
|
||||
noinst_DATA = README
|
||||
|
||||
README: pam_exec.8.xml
|
||||
README: $(XMLS)
|
||||
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ pam_faildelay_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_faildelay.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -32,6 +32,6 @@ TESTS = tst-pam_filter
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_filter.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ TESTS = tst-pam_ftp
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_ftp.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -31,6 +31,6 @@ TESTS = tst-pam_group
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_group.8.xml group.conf.5.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ pam_issue_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_issue.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -15,7 +15,7 @@ TESTS = tst-pam_keyinit
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_keyinit.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
||||
|
@ -29,6 +29,6 @@ pam_lastlog_la_LIBADD = $(top_builddir)/libpam/libpam.la -lutil
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_lastlog.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -33,7 +33,7 @@ secureconf_DATA = limits.conf
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_limits.8.xml limits.conf.5.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
||||
|
@ -29,6 +29,6 @@ pam_listfile_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_listfile.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ pam_localuser_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_localuser.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -30,7 +30,7 @@ if ENABLE_REGENERATE_MAN
|
||||
|
||||
noinst_DATA = README
|
||||
|
||||
README: pam_loginuid.8.xml
|
||||
README: $(XMLS)
|
||||
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ pam_mail_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_mail.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -36,6 +36,6 @@ mkhomedir_helper_LDADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_mkhomedir.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ pam_motd_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_motd.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -50,6 +50,6 @@ uninstall-local:
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_namespace.8.xml namespace.conf.5.xml pam_namespace_helper.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ pam_nologin_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_nologin.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ pam_permit_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_permit.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -33,6 +33,6 @@ pam_pwhistory_la_SOURCES = pam_pwhistory.c opasswd.c
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_pwhistory.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -30,6 +30,6 @@ pam_rhosts_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_rhosts.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ pam_rootok_la_LIBADD = $(top_builddir)/libpam/libpam.la @LIBSELINUX@ @LIBAUDIT@
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_rootok.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -32,7 +32,7 @@ pam_securetty_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_securetty.8.xml
|
||||
README: $(XMLS)
|
||||
if HAVE_VENDORDIR
|
||||
XSLTPROC_CUSTOM = --stringparam vendordir $(VENDORDIR)
|
||||
else
|
||||
|
@ -33,6 +33,6 @@ pam_selinux_check_LDADD = $(top_builddir)/libpam/libpam.la \
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_selinux.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -38,6 +38,6 @@ install-data-local:
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_sepermit.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -25,6 +25,6 @@ pam_setquota_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_setquota.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ pam_shells_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_shells.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -30,6 +30,6 @@ pam_succeed_if_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_succeed_if.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -35,6 +35,6 @@ pam_tally_SOURCES = pam_tally_app.c
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_tally.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -39,6 +39,6 @@ pam_tally2_SOURCES = pam_tally2_app.c
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_tally2.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -30,6 +30,6 @@ secureconf_DATA = time.conf
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_time.8.xml time.conf.5.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -46,7 +46,7 @@ hmacfile_LDADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_timestamp.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
||||
|
@ -27,6 +27,6 @@ securelib_LTLIBRARIES = pam_tty_audit.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_tty_audit.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -30,6 +30,6 @@ pam_umask_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_umask.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -59,6 +59,6 @@ unix_update_LDADD = @LIBCRYPT@ @LIBSELINUX@
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_unix.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -31,6 +31,6 @@ noinst_HEADERS = pam_userdb.h
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_userdb.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -31,6 +31,6 @@ pam_usertype_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_usertype.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ pam_warn_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_warn.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ pam_wheel_la_LIBADD = $(top_builddir)/libpam/libpam.la
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_wheel.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
@ -29,6 +29,6 @@ pam_xauth_la_LIBADD = $(top_builddir)/libpam/libpam.la @LIBSELINUX@
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
noinst_DATA = README
|
||||
README: pam_xauth.8.xml
|
||||
README: $(XMLS)
|
||||
-include $(top_srcdir)/Make.xml.rules
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user