From 61c881e6ee3f8fa3456f5505303eb60b2517f560 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Tue, 3 May 2022 01:12:09 -0700 Subject: [PATCH] add make generate --- Makefile | 10 ++++++---- README.md | 4 +--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 1583cd0a..ccc0a0ba 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,9 @@ PYTHON3 ?= "python3" .PHONY: help Makefile gitupdate svanalysis test htmlupload pypiupload \ - pyfnwriter pywriter + pyfnwriter pywriter generate + +generate: svanalysis pyfnwriter pywriter gitupdate: git submodule init @@ -12,18 +14,18 @@ svanalysis: sv_analysis # now installed as a command (/usr/local/bin/pywriter) by setup.py -pywriter: +pywriter: | svanalysis pywriter # likewise -pyfnwriter: +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: diff --git a/README.md b/README.md index 708b81e2..e664b8f0 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,7 @@ and the following scripts: Once those are sorted, installation and setup is as follows: * python3 setup.py develop -* make svanalysis -* make pywriter -* make pyfnwriter +* make generate # Usage -- 2.30.2