add grev[w][i][.] pseudo-code
[openpower-isa.git] / Makefile
index 04db8f2d85ee6e205be71a4a9ab47804c337e68c..1583cd0a98a85b630819c298a77cd97c71e8036e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,23 @@
 PYTHON3 ?= "python3"
 
-.PHONY: help Makefile gitupdate svanalysis test htmlupload pypiuload
+.PHONY: help Makefile gitupdate svanalysis test htmlupload pypiupload \
+        pyfnwriter pywriter
 
 gitupdate:
        git submodule init
        git submodule update --init --recursive --remote
 
+# now installed as a command (/usr/local/bin/svanalysis) by setup.py
 svanalysis:
-       python3 openpower/sv_analysis.py
+       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
@@ -36,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)