added a log func on the expected results for scalar ddffirst
[openpower-isa.git] / Makefile
index 8c078e0b9c1a3fd1c28c37a8d098debd3bb76fd5..ccc0a0bab8a2b6ac303be29e43ebbf9e9fa08bcb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,9 @@
 PYTHON3 ?= "python3"
 
-.PHONY: help Makefile gitupdate svanalysis test htmlupload pypiupload pywriter
+.PHONY: help Makefile gitupdate svanalysis test htmlupload pypiupload \
+        pyfnwriter pywriter generate
+
+generate: svanalysis pyfnwriter pywriter
 
 gitupdate:
        git submodule init
@@ -11,14 +14,18 @@ svanalysis:
        sv_analysis
 
 # now installed as a command (/usr/local/bin/pywriter) by setup.py
-pywriter:
+pywriter: | svanalysis
        pywriter
 
+# likewise
+pyfnwriter: | pywriter
+       pyfnwriter
+
 develop:
        python3 setup.py develop # yes, develop, not install
 
 # testing (usually done at install time)
-test: develop
+test: develop setup
        python3 setup.py test # could just run nosetest3...
 
 pypiupload: