diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/update_py_bindings.sh | 12 |
1 files changed, 12 insertions, 0 deletions
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 |