NetBSD/usr.bin/id/Makefile

14 lines
394 B
Makefile
Raw Normal View History

1994-05-06 03:24:26 +04:00
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
1996-10-18 09:55:26 +04:00
# $Id: Makefile,v 1.5 1996/10/18 06:15:20 thorpej Exp $
1993-03-21 12:45:37 +03:00
PROG= id
1994-12-22 15:29:38 +03:00
MAN= id.1 groups.1 whoami.1
1994-05-06 03:24:26 +04:00
afterinstall:
1996-10-18 09:55:26 +04:00
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
1994-05-06 03:24:26 +04:00
${.CURDIR}/groups.sh ${DESTDIR}/usr/bin/groups
1996-10-18 09:55:26 +04:00
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
1994-05-06 03:24:26 +04:00
${.CURDIR}/whoami.sh ${DESTDIR}/usr/bin/whoami
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>