freebsd-dev/usr.bin/opiepasswd/Makefile
Mark Murray 875afe974f Provide a WANT_INSECURE_OPIE compile-time option, which is useful if
you encrypt all traffic routinely, and is also useful for debugging.

Also, (properly) set SUID bit on relevant apps - opieinfo and
opiepasswd, which need it to mess with /etc/opiekeys.
2001-07-09 17:37:52 +00:00

22 lines
325 B
Makefile

# $FreeBSD$
#
OPIE_DIST?= ${.CURDIR}/../../contrib/opie
PROG= opiepasswd
CFLAGS+=-I${OPIE_DIST}
.if defined(WANT_INSECURE_OPIE) && ${WANT_INSECURE_OPIE} == true
CFLAGS+=-DINSECURE_OVERRIDE
.endif
DPADD= ${LIBOPIE} ${LIBMD}
LDADD= -lopie -lmd
BINMODE=4555
INSTALLFLAGS=-fschg
.PATH: ${OPIE_DIST}
.include <bsd.prog.mk>