1# @(#)Makefile 8.1 (Berkeley) 6/6/93 2# $FreeBSD$ 3 4PROG= id 5WARNS?= 2 6MAN= id.1 groups.1 whoami.1 7 8# XXX BROKEN: afterinstall: 9afterinstall: 10 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ 11 ${.CURDIR}/groups.sh ${DESTDIR}${BINDIR}/groups 12 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ 13 ${.CURDIR}/whoami.sh ${DESTDIR}${BINDIR}/whoami 14 15.include <bsd.prog.mk> 16