mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 21:44:16 +00:00
Add horizontal ruler between documentation for builtins and commands
darcs-hash:20060822004810-ac50b-aa75e233685ce4e0c22cde27411550a13efbeff6.gz
This commit is contained in:
parent
20698cc813
commit
22cb7dd2d7
1 changed files with 8 additions and 2 deletions
10
Makefile.in
10
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
|
||||
|
|
Loading…
Reference in a new issue