Makefile revision 74848
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD: head/usr.bin/id/Makefile 74848 2001-03-27 10:52:19Z ru $
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