1# @(#)Makefile 8.1 (Berkeley) 06/06/93 2 3PROG= id 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 13 14.include <bsd.prog.mk> 15