mirror of
https://github.com/opnsense/src.git
synced 2026-03-31 15:05:17 -04:00
16 lines
225 B
Makefile
16 lines
225 B
Makefile
# $Id$
|
|
#
|
|
OPIE_DIST?= ${.CURDIR}/../../contrib/opie
|
|
|
|
PROG= opiepasswd
|
|
SRCS= opiepasswd.c
|
|
MAN1= opiepasswd.1
|
|
|
|
CFLAGS+=-I${OPIE_DIST}
|
|
|
|
DPADD= ${LIBOPIE} ${LIBMD}
|
|
LDADD= -lopie -lmd
|
|
|
|
.PATH: ${OPIE_DIST}
|
|
|
|
.include <bsd.prog.mk>
|