diff options
Diffstat (limited to 'etc/Makefile.am')
-rw-r--r-- | etc/Makefile.am | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/etc/Makefile.am b/etc/Makefile.am new file mode 100644 index 0000000..c5c0620 --- /dev/null +++ b/etc/Makefile.am @@ -0,0 +1,23 @@ +# This is a dummy Makefile.am to get automake work flawlessly, +# and also cooperate to make a distribution for `make dist' + +sysconf_DATA = login.defs + +defaultdir = $(sysconfdir)/default +default_DATA = + +nonpam_files = \ + limits \ + login.access + +if !USE_PAM +nonpamdir = $(sysconfdir) +nonpam_DATA = $(nonpam_files) +endif + +EXTRA_DIST = \ + $(nonpam_files) \ + $(sysconf_DATA) \ + $(default_DATA) + +SUBDIRS = pam.d |