From 790c166586e2b5accb49dd1d73c47dd3ce41a2a1 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Wed, 12 Aug 2020 14:23:58 -0700 Subject: [PATCH] add run_sim to Makefile --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 -- 2.30.2