mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-14 10:09:48 +00:00
520c8e1852
Tested with full make universe
20 lines
237 B
Makefile
20 lines
237 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= su
|
|
|
|
LIBADD= util pam
|
|
|
|
.if ${MK_AUDIT} != "no"
|
|
CFLAGS+= -DUSE_BSM_AUDIT
|
|
LIBADD+= bsm
|
|
.endif
|
|
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
PRECIOUSPROG=
|
|
|
|
.include <bsd.prog.mk>
|