7687733bfb
It seems su does build without warnings, but it requires a small fix to libbsm headers, which I have not committed to SVN yet.
24 lines
306 B
Makefile
24 lines
306 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= su
|
|
|
|
WARNS?= 5
|
|
|
|
DPADD= ${LIBUTIL} ${LIBPAM}
|
|
LDADD= -lutil ${MINUSLPAM}
|
|
|
|
.if ${MK_AUDIT} != "no"
|
|
CFLAGS+= -DUSE_BSM_AUDIT
|
|
DPADD+= ${LIBBSM}
|
|
LDADD+= -lbsm
|
|
.endif
|
|
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
PRECIOUSPROG=
|
|
|
|
.include <bsd.prog.mk>
|