NetBSD/usr.bin/id/Makefile

14 lines
384 B
Makefile
Raw Normal View History

1994-05-06 03:24:26 +04:00
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
1994-12-22 15:29:38 +03:00
# $Id: Makefile,v 1.4 1994/12/22 12:29:56 cgd 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:
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/groups.sh ${DESTDIR}/usr/bin/groups
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/whoami.sh ${DESTDIR}/usr/bin/whoami
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>