diff --git a/Makefile.in b/Makefile.in index d51b3a3..b6759aa 100644 --- a/Makefile.in +++ b/Makefile.in @@ -114,12 +114,12 @@ BUILTIN_DOC_HDR := $(BUILTIN_DOC_SRC:.txt=.doxygen) # Files containing documentation for external commands. # CMD_DOC_SRC := doc_src/contains.txt doc_src/count.txt doc_src/dirh.txt \ - doc_src/dirs.txt doc_src/fish_pager.txt doc_src/fishd.txt \ - doc_src/help.txt doc_src/isatty.txt doc_src/mimedb.txt \ - doc_src/nextd.txt doc_src/open.txt doc_src/popd.txt \ - doc_src/prevd.txt doc_src/psub.txt doc_src/pushd.txt \ - doc_src/set_color.txt doc_src/trap.txt doc_src/type.txt \ - doc_src/umask.txt doc_src/vared.txt + doc_src/dirs.txt doc_src/fish.txt doc_src/fish_pager.txt \ + doc_src/fishd.txt doc_src/help.txt doc_src/isatty.txt \ + doc_src/mimedb.txt doc_src/nextd.txt doc_src/open.txt \ + doc_src/popd.txt doc_src/prevd.txt doc_src/psub.txt \ + doc_src/pushd.txt doc_src/set_color.txt doc_src/trap.txt \ + doc_src/type.txt doc_src/umask.txt doc_src/vared.txt # # Files generated by running doxygen on the files in $(CMD_DOC_SRC) @@ -137,7 +137,7 @@ TEST_IN := $(wildcard tests/test*.in) # Files in ./doc_src/ DOC_SRC_DIR_FILES := doc_src/Doxyfile.in doc_src/doc.hdr \ - $(BUILTIN_DOC_SRC) $(CMD_DOC_SRC) doc_src/fish.1.in + $(BUILTIN_DOC_SRC) $(CMD_DOC_SRC) # Files in ./ MAIN_DIR_FILES := Doxyfile Doxyfile.user Makefile.in configure \ @@ -170,11 +170,11 @@ FUNCTIONS_DIR_FILES := $(wildcard share/functions/*.fish) PROGRAMS:=fish set_color @XSEL@ @SEQ_FALLBACK@ mimedb count fish_pager fishd # Manuals to install -MANUALS:=doc_src/fish.1 @XSEL_MAN_PATH@ \ - doc_src/builtin_doc/man/man1/mimedb.1 \ - doc_src/builtin_doc/man/man1/set_color.1 \ - doc_src/builtin_doc/man/man1/count.1 \ - doc_src/builtin_doc/man/man1/fishd.1 \ +MANUALS:=doc_src/builtin_doc/man/man1/fish.1 @XSEL_MAN_PATH@ \ + doc_src/builtin_doc/man/man1/mimedb.1 \ + doc_src/builtin_doc/man/man1/set_color.1 \ + doc_src/builtin_doc/man/man1/count.1 \ + doc_src/builtin_doc/man/man1/fishd.1 \ doc_src/builtin_doc/man/man1/fish_pager.1 #All translation message catalogs @@ -201,7 +201,7 @@ debug: .PHONY: debug # User documentation, describing the features of the fish shell. -user_doc: doc_src/doc.hdr Doxyfile.user user_doc.head.html +user_doc: doc_src/doc.hdr Doxyfile.user user_doc.head.html $(CMD_DOC_SRC) $(BUILTIN_DOC_SRC) $(MAKE) doc.h # Depend on the source (doc.hdr) and manually make the intermediate as needed doxygen Doxyfile.user touch user_doc @@ -240,8 +240,8 @@ doc.h:$(BUILTIN_DOC_SRC) $(CMD_DOC_SRC) doc_src/doc.hdr 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 + echo "/** \page commands External commands and functions" >>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. Fish also features a large number of shellscript functions." >>doc.h for i in `printf "%s\n" $(CMD_DOC_SRC)|sort`; do \ echo "
-c
or --command=COMMANDS
evaluate the specified commands instead of reading from the commandline
+- -d
or --debug-level=DEBUG_LEVEL
specify the verbosity level of fish. A higher number means higher verbosity. The default level is 1.
+- -h
or --help
display help and exit
+- -i
or --interactive
specify that fish is to run in interactive mode
+- -l
or --login
specify that fish is to run as a login shell
+- -n
or --no-execute
do not execute any commands, only perform syntax checking
+- -p
or --profile=PROFILE_FILE
when fish exits, output timing information on all executed commands to the specified file
+- -v
or --version
display version and exit
+