diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-05-24 01:45:08 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-05-24 01:45:08 +0000 |
commit | a0f83cf04d0950ea130fca5cba9d966d795478a8 (patch) | |
tree | 6b5dc00b39eec920593c1cb5da883755353b57f7 /usr.bin | |
parent | 8d5f034e10400c09cba0ce50071f3046cfe792ad (diff) |
Use flags instead of argv[0], to avoid /usr/bin pollution.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/keynote/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/usr.bin/keynote/Makefile b/usr.bin/keynote/Makefile index b324d8db851..d1fa63cdebd 100644 --- a/usr.bin/keynote/Makefile +++ b/usr.bin/keynote/Makefile @@ -1,16 +1,14 @@ -# $OpenBSD: Makefile,v 1.1 1999/05/24 01:30:20 angelos Exp $ +# $OpenBSD: Makefile,v 1.2 1999/05/24 01:45:07 angelos Exp $ -PROG= keynote-sign -LINKS= ${BINDIR}/keynote-sign ${BINDIR}/keynote-sigver -LINKS+= ${BINDIR}/keynote-sign ${BINDIR}/keynote-verify -LINKS+= ${BINDIR}/keynote-sign ${BINDIR}/keynote-keygen +PROG= keynote BINOWN= root BINGRP= bin BINMODE= 555 BINDIR= /usr/bin LDADD= -lkeynote -lm -lcrypto -MAN= keynote-sign.1 keynote-verify.1 keynote-sigver.1 keynote-keygen.1 +MAN= keynote-sign.1 keynote-verify.1 keynote-sigver.1 keynote-keygen.1 \ + keynote.1 CLEANFILES+= lex.kv.c z.tab.c z.tab.h CFLAGS+= -DCRYPTO -I. -I${.CURDIR} |