blob: a9be2ac3e325835e475dbfe6a67b40605dcc2b24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
# $Id: Makefile,v 1.1 1995/10/18 08:45:24 deraadt Exp $
PROG= id
MAN= id.1 groups.1 whoami.1
afterinstall:
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/groups.sh ${DESTDIR}/usr/bin/groups
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/whoami.sh ${DESTDIR}/usr/bin/whoami
.include <bsd.prog.mk>
|