NetBSD/usr.bin/su/Makefile

33 lines
596 B
Makefile
Raw Normal View History

1999-07-13 02:11:37 +04:00
# $NetBSD: Makefile,v 1.15 1999/07/12 22:11:38 thorpej Exp $
1997-01-09 14:43:05 +03:00
# from: @(#)Makefile 8.1 (Berkeley) 7/19/93
1993-03-21 12:45:37 +03:00
1999-07-13 02:11:37 +04:00
SRCTOP= ../..
.include <bsd.crypto.mk>
1993-03-21 12:45:37 +03:00
PROG= su
1997-10-12 16:54:20 +04:00
DPADD+= ${LIBCRYPT}
LDADD+= -lcrypt
1993-03-21 12:45:37 +03:00
BINOWN= root
BINMODE=4555
1997-01-09 14:43:05 +03:00
INSTALLFLAGS=-fschg
# Uncomment the following line to change the group that may su root to "sugroup"
#
1997-10-12 16:54:20 +04:00
#CPPFLAGS+=-DSUGROUP=\"sugroup\"
1999-07-13 02:11:37 +04:00
.if defined(CRYPTOPATH)
.include "${CRYPTOPATH}/usr.bin/su/Makefile.frag"
.endif
.include <bsd.prog.mk>
.ifdef SKEY
1997-10-12 16:54:20 +04:00
CPPFLAGS+=-DSKEY
DPADD+= ${LIBSKEY}
LDADD+= -lskey
.endif
.ifdef SUROOTAUTH
CPPFLAGS+=-DROOTAUTH=\"${SUROOTAUTH}\"
.endif