Magellan Linux

Contents of /trunk/pam-config/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1908 - (show annotations) (download)
Fri Sep 7 09:22:35 2012 UTC (11 years, 7 months ago) by niro
File size: 715 byte(s)
-added missing pam.tmpfiles.d
1 # $Id$
2
3 sysconfdir = /etc
4 securitydir = $(sysconfdir)/security
5 pamdir = $(sysconfdir)/pam.d
6 tmpfilesdir = $(sysconfdir)/tmpfiles.d
7
8 PAM_FILES = system-auth system-login system-local-login system-remote-login \
9 system-services other halt reboot poweroff
10 all:
11 test:
12 clean:
13
14 install:
15 install -d $(DESTDIR)/${sysconfdir}
16 install -d $(DESTDIR)/${securitydir}
17 install -d $(DESTDIR)/${pamdir}
18 install -d $(DESTDIR)/${tmpfilesdir}
19 install -m 0644 environment $(DESTDIR)/${sysconfdir}/
20 install -m 0644 securetty $(DESTDIR)/${sysconfdir}/
21 install -m 0644 console.handlers $(DESTDIR)/${securitydir}/
22 install -m 0644 pam.tmpfiles.d $(DESTDIR)/${tmpfilesdir}/pam.conf
23 install -m 0644 ${PAM_FILES} $(DESTDIR)/${pamdir}