freebsd-dev/usr.bin/id/Makefile

16 lines
384 B
Makefile
Raw Normal View History

1994-05-27 12:33:43 +00:00
# @(#)Makefile 8.1 (Berkeley) 6/6/93
2001-03-27 10:52:19 +00:00
# $FreeBSD$
1994-05-27 12:33:43 +00:00
PROG= id
WARNS?= 2
2001-03-27 10:52:19 +00:00
MAN= id.1 groups.1 whoami.1
1994-05-27 12:33:43 +00:00
# XXX BROKEN: afterinstall:
1994-05-27 12:33:43 +00:00
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
1994-05-27 12:33:43 +00:00
.include <bsd.prog.mk>