--- trunk/pam-config/Makefile 2012/08/30 13:54:37 1900 +++ trunk/pam-config/Makefile 2015/11/06 10:05:38 2900 @@ -3,9 +3,11 @@ sysconfdir = /etc securitydir = $(sysconfdir)/security pamdir = $(sysconfdir)/pam.d +tmpfilesdir = $(sysconfdir)/tmpfiles.d PAM_FILES = system-auth system-login system-local-login system-remote-login \ - system-services other halt reboot poweroff + system-services other + all: test: clean: @@ -13,9 +15,11 @@ install: install -d $(DESTDIR)/${sysconfdir} install -d $(DESTDIR)/${securitydir} + install -d $(DESTDIR)/${securitydir}/limits.d install -d $(DESTDIR)/${pamdir} + install -d $(DESTDIR)/${tmpfilesdir} install -m 0644 environment $(DESTDIR)/${sysconfdir}/ install -m 0644 securetty $(DESTDIR)/${sysconfdir}/ install -m 0644 console.handlers $(DESTDIR)/${securitydir}/ + install -m 0644 pam.tmpfiles.d $(DESTDIR)/${tmpfilesdir}/pam.conf install -m 0644 ${PAM_FILES} $(DESTDIR)/${pamdir} -