1# @(#)Makefile 8.2 (Berkeley) 4/2/94 2 3PROG= chpass 4SRCS= chpass.c edit.c field.c pw_copy.c pw_scan.c pw_util.c table.c util.c 5BINOWN= root 6BINMODE=4555 7.PATH: ${.CURDIR}/../../usr.sbin/pwd_mkdb ${.CURDIR}/../../usr.sbin/vipw 8CFLAGS+=-I${.CURDIR}/../../usr.sbin/pwd_mkdb -I${.CURDIR}/../../usr.sbin/vipw 9LINKS= ${BINDIR}/chpass ${BINDIR}/chfn ${BINDIR}/chpass ${BINDIR}/chsh 10MLINKS= chpass.1 chfn.1 chpass.1 chsh.1 11 12beforeinstall: 13 [ ! -e /usr/bin/chpass ] || chflags noschg /usr/bin/chpass 14 15afterinstall: 16 chflags schg /usr/bin/chpass 17 18.include <bsd.prog.mk> 19