From d31f0ab6e93da3a01edaf5415daa5bda62436216 Mon Sep 17 00:00:00 2001 From: umarcor Date: Wed, 30 Dec 2020 23:45:48 +0100 Subject: scripts: add 'update_py_bindings.sh' --- scripts/update_py_bindings.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 scripts/update_py_bindings.sh (limited to 'scripts/update_py_bindings.sh') diff --git a/scripts/update_py_bindings.sh b/scripts/update_py_bindings.sh new file mode 100755 index 000000000..f63b16caa --- /dev/null +++ b/scripts/update_py_bindings.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env sh + +set -e + +cd $(dirname "$0")/../src + +for item in edif psl vhdl; do + cd "$item" + make clean + make + cd .. +done -- cgit v1.2.3