1 # from: @(#)Makefile 8.1 (Berkeley) 6/6/93 2 # $Id: Makefile,v 1.4 1994/12/22 12:29:56 cgd Exp $ 3 4 PROG= id 5 MAN= id.1 groups.1 whoami.1 6 7 afterinstall: 8 install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ 9 ${.CURDIR}/groups.sh ${DESTDIR}/usr/bin/groups 10 install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ 11 ${.CURDIR}/whoami.sh ${DESTDIR}/usr/bin/whoami 12 13 .include <bsd.prog.mk> 14