Skip to content
Snippets Groups Projects
Commit 0f58dd20 authored by dh00601's avatar dh00601
Browse files

created script that generates the documentation

parent e167aea7
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# Script to generate the docs
NAME_CURRENT_FILE="`realpath \"$0\"`"
DIRNAME_CURRENT_FILE=$(dirname $NAME_CURRENT_FILE)
DOCS_DIR="$DIRNAME_CURRENT_FILE/docs/"
# echo "$NAME_CURRENT_FILE"
# echo "$DIRNAME_CURRENT_FILE"
# echo "$DOCS_DIR"
# Generate docs
echo "Generating documentation"
cd $DOCS_DIR
make clean
make html
echo "Done"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment