File: Makefile

package info (click to toggle)
libpam-unix2 1%3A2.4.1-6
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,972 kB
  • sloc: sh: 4,076; ansic: 3,554; makefile: 105; sed: 16
file content (15 lines) | stat: -rw-r--r-- 428 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Author: Christoph Pleger <Christoph.Pleger@tu-dortmund.de>

all: unix2_chkpwd

unix2_chkpwd: unix2_chkpwd.o
	$(LINK.c) -o unix2_chkpwd unix2_chkpwd.o -lpam

clean:
	rm -f unix2_chkpwd unix2_chkpwd.o

install: all
	install -m 755 -d $(DESTDIR)/sbin
	install -m u=rwx,g=rsx,o=rx -g shadow unix2_chkpwd $(DESTDIR)/sbin
	install -m 755 -d $(DESTDIR)/usr/share/man/man8
	install -m 644 unix2_chkpwd.8 $(DESTDIR)/usr/share/man/man8