summaryrefslogtreecommitdiff
path: root/lib/libkeynote
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>1999-10-11 00:09:34 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>1999-10-11 00:09:34 +0000
commitf3120817790fb9aaf8d4c60b4c766a5f8b456df3 (patch)
tree0acb862c17b99296fbc42f9ce2b32a6236e6c3c0 /lib/libkeynote
parenta5868618d97fc30acc5583762fdcb866f24cf1f8 (diff)
keynote.5 references.
Diffstat (limited to 'lib/libkeynote')
-rw-r--r--lib/libkeynote/Makefile.in24
-rw-r--r--lib/libkeynote/README6
2 files changed, 18 insertions, 12 deletions
diff --git a/lib/libkeynote/Makefile.in b/lib/libkeynote/Makefile.in
index 2cffc0d22f9..0a28496491e 100644
--- a/lib/libkeynote/Makefile.in
+++ b/lib/libkeynote/Makefile.in
@@ -1,3 +1,4 @@
+# $OpenBSD: Makefile.in,v 1.6 1999/10/11 00:09:33 angelos Exp $
#
# The author of this code is Angelos D. Keromytis (angelos@dsl.cis.upenn.edu)
#
@@ -17,7 +18,7 @@
# MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
# PURPOSE.
-VERSION = 2.0
+VERSION = 2.1
DISTFILE = keynote-${VERSION}.tar.gz
KNSUBDIR = KeyNote-${VERSION}
@@ -83,13 +84,13 @@ $(TARGET): $(OBJS)
$(TARGET2): $(TARGET) $(OBJS2)
$(CC) $(CFLAGS) -o $(TARGET2) $(OBJS2) $(LIBS)
-k.tab.c: keynote.y keynote.h assertion.h config.h
+k.tab.c: keynote.y header.h keynote.h assertion.h config.h
$(YACC) $(YACCFLAGS) keynote.y
z.tab.c: keynote-ver.y keynote.h header.h config.h
$(YACC) $(YACCFLAGS2) keynote-ver.y
-lex.kn.c: keynote.l k.tab.h keynote.h assertion.h config.h
+lex.kn.c: keynote.l k.tab.h header.h keynote.h assertion.h config.h
$(LEX) $(LEXFLAGS) keynote.l
lex.kv.c: keynote-ver.l z.tab.h keynote.h header.h config.h
@@ -98,16 +99,16 @@ lex.kv.c: keynote-ver.l z.tab.h keynote.h header.h config.h
.c.o:
$(CC) $(CFLAGS) $(DEFS) $(INC) -c $<
-aux.c: keynote.h assertion.h signature.h config.h
-parse_assertion.c: keynote.h assertion.h signature.h config.h
-environment.c: keynote.h assertion.h config.h
-keynote-verify.c: keynote.h header.h config.h
-signature.c: keynote.h assertion.h signature.h config.h
+aux.c: header.h keynote.h assertion.h signature.h config.h
+parse_assertion.c: header.h keynote.h assertion.h signature.h config.h
+environment.c: header.h keynote.h assertion.h config.h
+keynote-verify.c: header.h keynote.h header.h config.h
+signature.c: header.h keynote.h assertion.h signature.h config.h
keynote-keygen.c: keynote.h assertion.h signature.h header.h config.h
keynote-sign.c: keynote.h header.h config.h
keynote-sigver.c: keynote.h header.h config.h
keynote-main.c: header.h config.h
-base64.c: keynote.h config.h
+base64.c: header.h keynote.h config.h
clean:
$(RM) $(RMFLAGS) $(OBJS) $(OBJS2) a.out *.core *~ */*~
@@ -149,7 +150,7 @@ test: all
-l testsuite/test-assertion6 \
-l testsuite/test-assertion7 || ${TRUE}
-manpages: mankeynote mansystem manutility
+manpages: mankeynote mansystem manutility mansyntax
mankeynote:
${NROFF} ${NROFFFLAGS} man/keynote.3 > man/keynote-library.0
@@ -160,6 +161,9 @@ mansystem:
manutility:
${NROFF} ${NROFFFLAGS} man/keynote.1 > man/keynote-utility.0
+mansyntax:
+ ${NROFF} ${NROFFFLAGS} man/keynote.5 > man/keynote-syntax.0
+
distribution: test cleanall manpages
${MKDIR} ${KNSUBDIR}
$(TAR) cf - . | (cd ${KNSUBDIR}; ${TAR} xf -)
diff --git a/lib/libkeynote/README b/lib/libkeynote/README
index 5e07b69dac7..742122291b1 100644
--- a/lib/libkeynote/README
+++ b/lib/libkeynote/README
@@ -1,4 +1,4 @@
-# $OpenBSD: README,v 1.4 1999/10/01 01:08:29 angelos Exp $
+# $OpenBSD: README,v 1.5 1999/10/11 00:09:33 angelos Exp $
This is release 2.0 of the KeyNote trust management library reference
implementation (in case you are wondering, there was never an official 1.0
@@ -28,13 +28,15 @@ The Makefile creates the libkeynote.a library and the keynote program.
There is a man page for the library calls (keynote.3) and one for the command
line tool (keynote.1), in the man/ directory. There is also a man page
-about KeyNote itself (keynote.4), which contains some text from the spec.
+about KeyNote itself (keynote.4) and one about assertion syntax
+(keynote.5) which contain some text from the spec.
To view them, use:
nroff -mandoc keynote.1 | more
nroff -mandoc keynote.3 | more
nroff -mandoc keynote.4 | more
+ nroff -mandoc keynote.5 | more
Alternatively, you can just install them in your manpath. If your
nroff does not support the -mandoc flag, use -man instead. For those