diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-09-28 00:00:42 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-09-28 00:00:42 +0000 |
commit | 00e1deba6dde1685f722a802e2b6cb56115914b6 (patch) | |
tree | 96a0a6814a81f16b99afd30bc51e7bd89b5b3bbb /usr.bin/skey/Makefile | |
parent | e2cc1f6e738ec3bda9303b9cf4dcd53223bd8388 (diff) |
skeyprune -- new command to prune commented (zero'd) and crufty skey entries.
Diffstat (limited to 'usr.bin/skey/Makefile')
-rw-r--r-- | usr.bin/skey/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/skey/Makefile b/usr.bin/skey/Makefile index 70c0226e1f7..3c0549c4634 100644 --- a/usr.bin/skey/Makefile +++ b/usr.bin/skey/Makefile @@ -1,12 +1,13 @@ -# $OpenBSD: Makefile,v 1.3 1996/09/27 15:41:35 millert Exp $ +# $OpenBSD: Makefile,v 1.4 1996/09/28 00:00:40 millert Exp $ PROG= skey -MAN= skey.1 skeyinfo.1 skeyaudit.1 +MAN= skey.1 skeyinfo.1 skeyaudit.1 skeyprune.8 DPADD= ${LIBSKEY} LDADD= -lskey beforeinstall: install -c -m 755 ${.CURDIR}/skeyaudit.sh ${DESTDIR}${BINDIR}/skeyaudit install -c -m 755 ${.CURDIR}/skeyinfo.sh ${DESTDIR}${BINDIR}/skeyinfo + install -c -m 755 ${.CURDIR}/skeyprune.pl ${DESTDIR}${BINDIR}/skeyprune .include <bsd.prog.mk> |