diff options
author | pst <pst@FreeBSD.org> | 1997-02-07 03:56:15 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1997-02-07 03:56:15 +0000 |
commit | 4c37b885439f00dec715439bc54a9cfd3d68dfcd (patch) | |
tree | 454302116d32bc58ee759e765221faedf74eddbe /usr.bin/opiepasswd | |
parent | 53492fe5544a6b91ee2b3a057e12f449b8b3b1e2 (diff) | |
download | FreeBSD-src-4c37b885439f00dec715439bc54a9cfd3d68dfcd.zip FreeBSD-src-4c37b885439f00dec715439bc54a9cfd3d68dfcd.tar.gz |
Build opiepasswd from contrib_opie module.
Diffstat (limited to 'usr.bin/opiepasswd')
-rw-r--r-- | usr.bin/opiepasswd/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/usr.bin/opiepasswd/Makefile b/usr.bin/opiepasswd/Makefile new file mode 100644 index 0000000..075aa60 --- /dev/null +++ b/usr.bin/opiepasswd/Makefile @@ -0,0 +1,16 @@ +# $FreeBSD$ +# +OPIE_DIST?=../../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> |