Makefile revision 1.5
1# from: @(#)Makefile 8.1 (Berkeley) 6/6/93 2# $Id: Makefile,v 1.5 1996/10/18 06:15:20 thorpej Exp $ 3 4PROG= id 5MAN= id.1 groups.1 whoami.1 6 7afterinstall: 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