8cc3b02f98
WARNS=2 cannot be enable because of an unresolvable conflict in arg 2 of execv(). Document this in the Makefile. Reviewed by: bde (su.c only)
17 lines
289 B
Makefile
17 lines
289 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $FreeBSD$
|
|
|
|
PROG= su
|
|
|
|
DPADD+= ${LIBUTIL} ${LIBPAM}
|
|
LDADD+= -lutil ${MINUSLPAM}
|
|
|
|
# Cannot be enabled because of a truly nasty warning/problem
|
|
# concering execv(2)'s second argument.
|
|
#WARNS?= 2
|
|
|
|
BINMODE=4555
|
|
INSTALLFLAGS=-fschg
|
|
|
|
.include <bsd.prog.mk>
|