xref: /freebsd/usr.bin/id/Makefile (revision dc12be52584a604d0444341077b89a56d670609f)
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD$
3
4PROG=	id
5MAN=	id.1 groups.1 whoami.1
6
7# XXX BROKEN:	afterinstall:
8afterinstall:
9	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
10	    ${.CURDIR}/groups.sh ${DESTDIR}${BINDIR}/groups
11	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
12	    ${.CURDIR}/whoami.sh ${DESTDIR}${BINDIR}/whoami
13
14.include <bsd.prog.mk>
15