875afe974f
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.
22 lines
325 B
Makefile
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>
|