0d2092
diff -up ./contrib/xcscope/cscope-indexer.help ./contrib/xcscope/cscope-indexer
0d2092
--- ./contrib/xcscope/cscope-indexer.help	2017-12-07 10:45:07.000000000 -0500
0d2092
+++ ./contrib/xcscope/cscope-indexer	2019-06-24 15:46:31.484852474 -0400
0d2092
@@ -80,6 +80,37 @@ RECURSE=
0d2092
 VERBOSE=
0d2092
 export DIR RECURSE			# Need to pass these to subprocesses
0d2092
 
0d2092
+show_usage() {
0d2092
+
0d2092
+cat << EOF
0d2092
+
0d2092
+     cscope-indexer [ -v ] [-f database_file ] [-i list_file ] [ -l ] [ -r ]
0d2092
+
0d2092
+ where:
0d2092
+
0d2092
+     -f database_file
0d2092
+          Specifies the cscope database file (default: cscope.out).
0d2092
+
0d2092
+     -i list_file
0d2092
+          Specifies the name of the file into which the list of files
0d2092
+          to index is placed (default: cscope.files).
0d2092
+
0d2092
+     -l
0d2092
+          Suppress the generation/updating of the cscope database
0d2092
+          file.  Only a list of files is generated.
0d2092
+
0d2092
+     -r
0d2092
+          Recurse into subdirectories to locate files to index.
0d2092
+          Without this option, only the current directory is
0d2092
+          searched.
0d2092
+
0d2092
+     -v
0d2092
+          Be verbose.  Output simple progress messages.
0d2092
+
0d2092
+EOF
0d2092
+
0d2092
+}
0d2092
+
0d2092
 while [ -n "$1" ]
0d2092
 do
0d2092
     case "$1" in
0d2092
@@ -110,6 +141,10 @@ do
0d2092
     -v)
0d2092
 	VERBOSE=1
0d2092
 	;;
0d2092
+    -h|--help)
0d2092
+	show_usage
0d2092
+	exit 0
0d2092
+	;;
0d2092
     *)
0d2092
 	DIR="$1"
0d2092
 	;;