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