Magellan Linux

Contents of /tags/pam-config-1_3/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


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