16 lines
267 B
Makefile
16 lines
267 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= id
|
|
LINKS= ${BINDIR}/id ${BINDIR}/groups
|
|
LINKS+= ${BINDIR}/id ${BINDIR}/whoami
|
|
MAN= id.1 groups.1 whoami.1
|
|
|
|
.if ${MK_AUDIT} != "no"
|
|
CFLAGS+= -DUSE_BSM_AUDIT
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|