From: Jacob Lifshay Date: Wed, 12 Aug 2020 21:23:58 +0000 (-0700) Subject: add run_sim to Makefile X-Git-Tag: semi_working_ecp5~382 X-Git-Url: https://git.libre-soc.org/?p=soc.git;a=commitdiff_plain;h=790c166586e2b5accb49dd1d73c47dd3ce41a2a1 add run_sim to Makefile --- diff --git a/Makefile b/Makefile index a0530bff..80d96801 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,7 @@ PYTHON3 ?= "python3" +.PHONY: help Makefile gitupdate install run_sim test htmlupload + gitupdate: git submodule init git submodule update --recursive @@ -8,6 +10,10 @@ install: python3 setup.py develop # yes, develop, not install python3 src/soc/decoder/pseudo/pywriter.py +run_sim: install + # TODO: get it to work + python3 src/soc/litex/florent/sim.py + test: install python3 setup.py test # could just run nosetest3... @@ -25,8 +31,6 @@ BUILDDIR = build help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) -.PHONY: help Makefile - # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile