aboutsummaryrefslogtreecommitdiffhomepage
path: root/gen_hdr.sh
diff options
context:
space:
mode:
Diffstat (limited to 'gen_hdr.sh')
-rwxr-xr-xgen_hdr.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/gen_hdr.sh b/gen_hdr.sh
deleted file mode 100755
index 5e09f40e..00000000
--- a/gen_hdr.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-# This little script calls the man command to render a manual page and
-# pipes the result into the gen_hdr2 program to convert the output
-# into a C string literal.
-
-# NAME is the name of the function we are generating documentation for.
-NAME=`basename $1 .doxygen`
-
-# Render the page
-nroff -man doc_src/builtin_doc/man/man1/${NAME}.1 | col -b | cat -s | sed -e '$d' | ./gen_hdr2
-