diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2017-07-09 21:23:20 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2017-07-09 21:23:20 +0000 |
commit | d208bdcfc23a3d19c9a025bd734769a6216caa04 (patch) | |
tree | 8aa676b95e1a16c0588bc408f50289919fc6683f /usr.bin/keynote/Makefile | |
parent | 9fe42201171d59ce3d52cc2f4a43bb7fc89e600e (diff) |
remove redundant variable declarations in Makefiles, since those are
the default.
okay millert@
Diffstat (limited to 'usr.bin/keynote/Makefile')
-rw-r--r-- | usr.bin/keynote/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/keynote/Makefile b/usr.bin/keynote/Makefile index 1da7d0d31dc..10f73818221 100644 --- a/usr.bin/keynote/Makefile +++ b/usr.bin/keynote/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 2004/06/28 18:36:05 msf Exp $ +# $OpenBSD: Makefile,v 1.14 2017/07/09 21:23:19 espie Exp $ PROG= keynote SRCS= keynote-sign.c keynote-keygen.c keynote-sigver.c keynote-verify.c \ @@ -9,7 +9,6 @@ YACCFLAGS= -d -p kv -b z DPADD= ${LIBKEYNOTE} ${LIBM} ${LIBCRYPTO} LDADD= -lkeynote -lm -lcrypto CLEANFILES+= lex.kv.c z.tab.c z.tab.h -MAN= keynote.1 .PATH: ${.CURDIR}/../../lib/libkeynote |