From dd7b81d015a27ca50351a8d09bff72d6b80f3488 Mon Sep 17 00:00:00 2001 From: Deon Lackey Date: Wed, 11 Aug 2010 16:10:13 -0400 Subject: adding Elio's patches --- b/Makefile | 29 +++++++++++++++++++++++++++++ b/date.xml | 1 + 2 files changed, 30 insertions(+) create mode 100644 b/Makefile create mode 100644 b/date.xml diff --git a/b/Makefile b/b/Makefile new file mode 100644 index 0000000..7e77561 --- /dev/null +++ b/b/Makefile @@ -0,0 +1,29 @@ +all: example.1 pk12util.1 + +# +# The atrgets in section use docbook2nroff.py to convert +# from xml to nroff +# +example.1: example.xml + python docbook2nroff.py example.xml > example.1 + +view-example: example.1 + man ./example.1 + +# add more as you get them ready + +date.xml: + date +"%e %B %Y" | tr -d '\n' > $@ + +version.xml: + echo -n ${VERSION} > $@ + +# +# The targets in this section use xmlto to convert +# from xml to nroff (or groff) +# +pk12util.1: pk12util.xml date.xml version.xml + xmlto man pk12util.xml + +view-pk12util: pk12util.1 + man ./pk12util.1 diff --git a/b/date.xml b/b/date.xml new file mode 100644 index 0000000..1177a12 --- /dev/null +++ b/b/date.xml @@ -0,0 +1 @@ +14 October 2008 \ No newline at end of file -- cgit