X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=Makefile;h=1583cd0a98a85b630819c298a77cd97c71e8036e;hb=bf92502a9a005711f3fcdfc72168f1fa9a29ed74;hp=241bd63edf9d2be6f7050b137907826de558f7da;hpb=8c7cf09e3d521fff505f081bd3f12acb0c023465;p=openpower-isa.git diff --git a/Makefile b/Makefile index 241bd63e..1583cd0a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ PYTHON3 ?= "python3" -.PHONY: help Makefile gitupdate svanalysis test htmlupload pypiuload pywriter +.PHONY: help Makefile gitupdate svanalysis test htmlupload pypiupload \ + pyfnwriter pywriter gitupdate: git submodule init @@ -8,12 +9,16 @@ gitupdate: # now installed as a command (/usr/local/bin/svanalysis) by setup.py svanalysis: - svanalysis + sv_analysis # now installed as a command (/usr/local/bin/pywriter) by setup.py pywriter: pywriter +# likewise +pyfnwriter: + pyfnwriter + develop: python3 setup.py develop # yes, develop, not install @@ -41,13 +46,13 @@ help: # copies all documentation to libre-soc (libre-soc admins only) htmlupload: clean html rsync -HPavz --delete build/html/* \ - libre-soc.org:/var/www/libre-soc.org/docs/soc/ + libre-soc.org:/var/www/libre-soc.org/docs/openpower-isa/ # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile echo "catch-all falling through to sphinx for document building" mkdir -p "$(SOURCEDIR)"/src/gen - sphinx-apidoc --ext-autodoc -o "$(SOURCEDIR)"/src/gen ./src/soc + sphinx-apidoc --ext-autodoc -o "$(SOURCEDIR)"/src/gen ./src/openpower @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)