Annotation of /trunk/pam-config/Makefile
Parent Directory | Revision Log
Revision 1900 -
(hide annotations)
(download)
Thu Aug 30 13:54:37 2012 UTC (12 years, 2 months ago) by niro
File size: 572 byte(s)
Thu Aug 30 13:54:37 2012 UTC (12 years, 2 months ago) by niro
File size: 572 byte(s)
-fixed broken Makefile
1 | niro | 1894 | # $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 | niro | 1900 | all: |
10 | test: | ||
11 | clean: | ||
12 | niro | 1894 | |
13 | install: | ||
14 | niro | 1900 | 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 | niro | 1894 |