diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2020-12-30 23:45:48 +0100 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2021-01-01 09:01:23 +0100 |
commit | d31f0ab6e93da3a01edaf5415daa5bda62436216 (patch) | |
tree | 9e96d159353635f9383a6c3fa5d6c0e6c6ac61e1 /scripts | |
parent | 10fe69ec4e7edca2c20aa4e49644f9cef1313a9e (diff) | |
download | ghdl-d31f0ab6e93da3a01edaf5415daa5bda62436216.tar.gz ghdl-d31f0ab6e93da3a01edaf5415daa5bda62436216.tar.bz2 ghdl-d31f0ab6e93da3a01edaf5415daa5bda62436216.zip |
scripts: add 'update_py_bindings.sh'
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 |