rwatson 705ed6f94a Merge Makefile:1.12, id.1:1.16,1.17, id.c:1.28,1.29 from HEAD to RELENG_6:
Add a -a argument to id(1), which causes id(1) to print out process
  audit properties, including the audit user id.  This can be quite
  helpful in debugging audit problems.

  Obtained from:  TrustedBSD Project

  Rename "-a" flag to "-A" in order to avoid conflicting with the "-a" flag
  as found on Solaris.

  Requested by:   ceri

Approved by:	re (hrs)
2006-09-26 02:12:05 +00:00

17 lines
284 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
PROG= id
WARNS?= 6
LINKS= ${BINDIR}/id ${BINDIR}/groups
LINKS+= ${BINDIR}/id ${BINDIR}/whoami
MAN= id.1 groups.1 whoami.1
.if !defined(NO_AUDIT)
CFLAGS+= -DUSE_BSM_AUDIT
DPADD+= ${LIBBSM}
LDADD+= -lbsm
.endif
.include <bsd.prog.mk>