summaryrefslogtreecommitdiff
path: root/bin/docrun
diff options
context:
space:
mode:
Diffstat (limited to 'bin/docrun')
-rw-r--r--bin/docrun16
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/docrun b/bin/docrun
deleted file mode 100644
index ad8ea9f..0000000
--- a/bin/docrun
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-if test $# -eq 0; then
- for f in doc/user/*.in; do
- xml=doc/user/`basename $f .in`.xml
- echo $f:
- python bin/scons-doc.py $f
- done
-else
- for a in $*; do
- f=doc/user/$a.in
- xml=doc/user/$a.xml
- echo $f:
- python bin/scons-doc.py $f
- done
-fi