diff options
author | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-04-11 11:10:32 -0700 |
---|---|---|
committer | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-06-03 10:10:31 -0700 |
commit | 7a27caa5f451fc96b620a0582bad3c780ef8bdef (patch) | |
tree | 2fe1e53599433b40cdb6d119447b71aab88664ca /scripts | |
parent | f2c7f75ceef24aec9891d75c2b4fb5db5b847868 (diff) |
Add make target to open local documentation
Signed-off-by: Nathaniel Graff <nathaniel.graff@sifive.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/open-docs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/scripts/open-docs b/scripts/open-docs new file mode 100755 index 0000000..82d0f91 --- /dev/null +++ b/scripts/open-docs @@ -0,0 +1,20 @@ +#!/usr/bin/env sh + +SDK_PATH="$( cd "$(dirname "$0")/.." ; pwd -P )" +DOCS_PATH=$SDK_PATH/doc/html/index.html + +XDG_OPEN=`which xdg-open` +OPEN=`which open` + +if [ "$XDG_OPEN" != "" ]; then + echo "Opening $DOCS_PATH" + $XDG_OPEN $DOCS_PATH + +elif [ "$OPEN" != "" ]; then + echo "Opening $DOCS_PATH" + $OPEN $DOCS_PATH + +else + echo "Please open $DOCS_PATH in your preferred HTML viewer" +fi + |