From caeeb04dc64c9649c1b34059db7387b73094bd64 Mon Sep 17 00:00:00 2001 From: Karol Gugala Date: Wed, 17 Apr 2019 12:16:53 +0200 Subject: [PATCH] Makefile: install sdf_timing module in env target Signed-off-by: Karol Gugala --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 601a3863..7dba3517 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,8 @@ env: $(IN_ENV) python -c "import prjxray" # Install fasm from third_party $(IN_ENV) pip install --upgrade -e third_party/fasm + # Install sdfparse form third party + $(IN_ENV) pip install --upgrade -e third_party/python-sdf-timing # Install project dependencies $(IN_ENV) pip install -r requirements.txt # Install project's documentation dependencies @@ -17,6 +19,9 @@ env: # Check fasm library was installed $(IN_ENV) python -c "import fasm" $(IN_ENV) python -c "import fasm.output" + # Check sdfparse lib was installed + $(IN_ENV) python -c "import sdf_timing" + $(IN_ENV) python -c "import sdf_timing.sdfparse" # Check YAML is installed $(IN_ENV) python -c "import yaml" || (echo "Unable to find python-yaml" && exit 1)