diff options
| -rw-r--r-- | usr.bin/opieinfo/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/usr.bin/opieinfo/Makefile b/usr.bin/opieinfo/Makefile new file mode 100644 index 000000000000..f859838bf03c --- /dev/null +++ b/usr.bin/opieinfo/Makefile @@ -0,0 +1,16 @@ +# $FreeBSD$ +# +OPIE_DIST?=../../contrib/opie + +PROG= opieinfo +SRCS= opieinfo.c +MAN1= opieinfo.1 + +CFLAGS+=-I${OPIE_DIST} + +DPADD= ${LIBOPIE} ${LIBMD} +LDADD= -lopie -lmd + +.PATH: ${OPIE_DIST} + +.include <bsd.prog.mk> |
