blob: d49040b7f5c293beb2acc96ac3e35e07997accb2 [file] [log] [blame]
#!/usr/bin/python
import os
import sys
os.environ['SPHINXBUILD']="sphinx-build"
build_dir = sys.path[0] + "/../build"
os.environ['BUILDDIR']=build_dir
os.environ['BUILDDIR']=sys.path[0] + "/../build"
os.environ['SOURCEDIR']=sys.path[0]
# force a clean every time
os.system("rm -rf " + build_dir + "/*")
os.system("make -e --makefile=" + sys.path[0] + "/Makefile html")