Magellan Linux

Annotation of /tags/pam-config-1_7/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3122 - (hide annotations) (download)
Wed Oct 9 13:31:59 2019 UTC (4 years, 7 months ago) by niro
File size: 742 byte(s)
tagged 'pam-config-1_7'
1 niro 1894 # $Id$
2    
3     sysconfdir = /etc
4     securitydir = $(sysconfdir)/security
5     pamdir = $(sysconfdir)/pam.d
6 niro 1908 tmpfilesdir = $(sysconfdir)/tmpfiles.d
7 niro 1894
8     PAM_FILES = system-auth system-login system-local-login system-remote-login \
9 niro 2899 system-services other
10    
11 niro 1900 all:
12     test:
13     clean:
14 niro 1894
15     install:
16 niro 1900 install -d $(DESTDIR)/${sysconfdir}
17     install -d $(DESTDIR)/${securitydir}
18 niro 1947 install -d $(DESTDIR)/${securitydir}/limits.d
19 niro 1900 install -d $(DESTDIR)/${pamdir}
20 niro 1908 install -d $(DESTDIR)/${tmpfilesdir}
21 niro 1900 install -m 0644 environment $(DESTDIR)/${sysconfdir}/
22     install -m 0644 securetty $(DESTDIR)/${sysconfdir}/
23     install -m 0644 console.handlers $(DESTDIR)/${securitydir}/
24 niro 1908 install -m 0644 pam.tmpfiles.d $(DESTDIR)/${tmpfilesdir}/pam.conf
25 niro 1900 install -m 0644 ${PAM_FILES} $(DESTDIR)/${pamdir}