aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-08-22 10:48:10 +1000
committerGravatar axel <axel@liljencrantz.se>2006-08-22 10:48:10 +1000
commit22cb7dd2d750e96afb8a48e732a3dba57c48f091 (patch)
tree5f95285d0453930feb3e60e8e6fea5d5ada6447c /Makefile.in
parent20698cc8135d6a2a7bd5b8c31cf8303d5d7e2a7b (diff)
Add horizontal ruler between documentation for builtins and commands
darcs-hash:20060822004810-ac50b-aa75e233685ce4e0c22cde27411550a13efbeff6.gz
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 399f3013..56bdb220 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -238,11 +238,17 @@ xsel-0.9.6/xsel: xsel-0.9.6
doc.h:$(BUILTIN_DOC_SRC) $(CMD_DOC_SRC) doc_src/doc.hdr
cat doc_src/doc.hdr >doc.h;
echo "/** \page builtins Builtin commands" >>doc.h;
- cat `printf "%s\n" $(BUILTIN_DOC_SRC)|sort` >>doc.h;
+ for i in `printf "%s\n" $(BUILTIN_DOC_SRC)|sort`; do \
+ echo "<hr>" >>doc.h; \
+ cat $$i >>doc.h; \
+ done
echo "*/" >>doc.h
echo "/** \page commands External commands" >>doc.h;
echo "\c fish is shipped with commands which do not use any internal parts of the shell, and are therefore not written as builtins, but separate commands." >>doc.h
- cat `printf "%s\n" $(CMD_DOC_SRC)|sort` >>doc.h;
+ for i in `printf "%s\n" $(CMD_DOC_SRC)|sort`; do \
+ echo "<hr>" >>doc.h; \
+ cat $$i >>doc.h; \
+ done
echo "*/" >>doc.h
# This rule creates complete doxygen headers from each of the various