mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
4239cf1c01
The remaining problem of converting highly incompatible pointer types is done by "laundering" the value through a union. This solves the problem (in my own mind) of how a "const char *" _ever_ actually gets a value in a WARNS=2 world.
15 lines
187 B
Makefile
15 lines
187 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $FreeBSD$
|
|
|
|
PROG= su
|
|
|
|
DPADD+= ${LIBUTIL} ${LIBPAM}
|
|
LDADD+= -lutil ${MINUSLPAM}
|
|
|
|
WARNS?= 2
|
|
|
|
BINMODE=4555
|
|
INSTALLFLAGS=-fschg
|
|
|
|
.include <bsd.prog.mk>
|