Skip to content

Commit

Permalink
Add a make rule to build the ipynb tutorials.
Browse files Browse the repository at this point in the history
  • Loading branch information
qiuwch committed May 24, 2017
1 parent 8297555 commit 092e855
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ html:
sphinx-build -n -b html . _build/html
xdg-open _build/html/index.html

tutorials: clean
-doxygen Doxyfile
# Start the docker container
nvidia-docker run -d -it --name rr --env="DISPLAY=:0.0" --volume="/tmp/.X11-unix:/tmp/.X11-unix:rw" -p 9000:9000 qiuwch/rr
sphinx-build -n -b html . _build/html
docker stop rr
xdg-open _build/html/index.html

clean: # Clear artifacts
rm -rf _build modules tutorials/*_tutorial.* tutorials/*.zip doxygen/html doxygen/latex doxygen/xml

Expand Down

0 comments on commit 092e855

Please sign in to comment.