add -p option, rearrangement/cleanup
[unix-history] / usr / src / usr.bin / id / Makefile
CommitLineData
f14c7943 1# @(#)Makefile 5.2 (Berkeley) %G%
cd011e49
KB
2
3PROG= id
f14c7943
KB
4MAN1= id.0 groups.0 whoami.0
5
6afterinstall:
7 install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
8 ${.CURDIR}/groups.sh ${DESTDIR}/usr/bin/groups
9 install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
10 ${.CURDIR}/whoami.sh ${DESTDIR}/usr/bin/whoami
11 ${MINSTALL} groups.0 ${DESTDIR}${MANDIR}1/groups.0
12 ${MINSTALL} whoami.0 ${DESTDIR}${MANDIR}1/whoami.0
cd011e49
KB
13
14.include <bsd.prog.mk>