Makefile revision 1.3
1# from: @(#)Makefile 8.1 (Berkeley) 6/6/93 2# $Id: Makefile,v 1.3 1994/05/05 23:24:26 cgd Exp $ 3 4PROG= id 5MAN1= id.0 groups.0 whoami.0 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