cda2a9b2f0
This is not "useless", as one may have non-default setting for BINOWN in make.conf, and we still want these to be installed setuid root in this case.
20 lines
265 B
Makefile
20 lines
265 B
Makefile
# $FreeBSD$
|
|
#
|
|
OPIE_DIST?= ${.CURDIR}/../../contrib/opie
|
|
|
|
PROG= opiepasswd
|
|
|
|
CFLAGS+=-I${OPIE_DIST}
|
|
CFLAGS+=-DINSECURE_OVERRIDE
|
|
|
|
DPADD= ${LIBOPIE} ${LIBMD}
|
|
LDADD= -lopie -lmd
|
|
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
INSTALLFLAGS=-fschg
|
|
|
|
.PATH: ${OPIE_DIST}
|
|
|
|
.include <bsd.prog.mk>
|