mirror of https://github.com/GOSTSec/sgminer
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
528 B
21 lines
528 B
11 years ago
|
EXTRA_DIST = conf.py apiref.rst changes.rst conformance.rst \
|
||
|
gettingstarted.rst github_commits.c index.rst portability.rst \
|
||
|
tutorial.rst upgrading.rst ext/refcounting.py
|
||
|
|
||
|
SPHINXBUILD = sphinx-build
|
||
|
SPHINXOPTS = -d _build/doctrees $(SPHINXOPTS_EXTRA)
|
||
|
|
||
|
html-local:
|
||
|
$(SPHINXBUILD) -b html $(SPHINXOPTS) $(srcdir) _build/html
|
||
|
|
||
|
install-html-local: html
|
||
|
mkdir -p $(DESTDIR)$(htmldir)
|
||
|
cp -r _build/html $(DESTDIR)$(htmldir)
|
||
|
|
||
|
uninstall-local:
|
||
|
rm -rf $(DESTDIR)$(htmldir)
|
||
|
|
||
|
clean-local:
|
||
|
rm -rf _build
|
||
|
rm -f ext/refcounting.pyc
|