da3082d4a9
Tested on i386 and alpha.
16 lines
384 B
Makefile
16 lines
384 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= id
|
|
WARNS?= 2
|
|
MAN= id.1 groups.1 whoami.1
|
|
|
|
# XXX BROKEN: afterinstall:
|
|
afterinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/groups.sh ${DESTDIR}${BINDIR}/groups
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/whoami.sh ${DESTDIR}${BINDIR}/whoami
|
|
|
|
.include <bsd.prog.mk>
|