diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-02-21 21:08:47 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-02-21 21:08:47 +0100 |
commit | db5d662a76ad288336af9832ec7765a9bba16ce0 (patch) | |
tree | a8d5e622337942ba98dce02d7dbc2c4fc1b2abaf /src/vhdl/Makefile | |
parent | e6f397e0ee0c8e3e8f0ca5ac864f02a4cd305818 (diff) | |
download | ghdl-db5d662a76ad288336af9832ec7765a9bba16ce0.tar.gz ghdl-db5d662a76ad288336af9832ec7765a9bba16ce0.tar.bz2 ghdl-db5d662a76ad288336af9832ec7765a9bba16ce0.zip |
std_names: add async_abort and sync_abort. For #1654
Diffstat (limited to 'src/vhdl/Makefile')
-rw-r--r-- | src/vhdl/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/vhdl/Makefile b/src/vhdl/Makefile index 364708efe..a76cb68de 100644 --- a/src/vhdl/Makefile +++ b/src/vhdl/Makefile @@ -20,6 +20,7 @@ PNODES=../../scripts/pnodes.py PNODESPY=../../scripts/pnodespy.py +PYTHON=python DEPS=vhdl-nodes.ads vhdl-nodes.adb.in $(PNODES) @@ -79,37 +80,37 @@ vhdl-elocations_meta.adb: vhdl-elocations_meta.adb.in vhdl-elocations.ads $(DEPS ../../pyGHDL/libghdl/vhdl/nodes.py: $(DEPS) $(PNODESPY) $(RM) $@ $(PNODESPY) $(NODES_FLAGS) libghdl-nodes > $@ - python -m black $@ + $(PYTHON) -m black $@ chmod -w $@ ../../pyGHDL/libghdl/vhdl/nodes_meta.py: $(DEPS) $(PNODESPY) $(RM) $@ $(PNODESPY) $(NODES_FLAGS) libghdl-meta > $@ - python -m black $@ + $(PYTHON) -m black $@ chmod -w $@ ../../pyGHDL/libghdl/std_names.py: $(PNODESPY) ../std_names.ads $(RM) $@ $(PNODESPY) $(NODES_FLAGS) libghdl-names > $@ - python -m black $@ + $(PYTHON) -m black $@ chmod -w $@ ../../pyGHDL/libghdl/vhdl/tokens.py: $(PNODESPY) vhdl-tokens.ads $(RM) $@ $(PNODESPY) $(NODES_FLAGS) libghdl-tokens > $@ - python -m black $@ + $(PYTHON) -m black $@ chmod -w $@ ../../pyGHDL/libghdl/vhdl/elocations.py: $(PNODESPY) vhdl-elocations.ads $(RM) $@ $(PNODESPY) $(ELOCATIONS_FLAGS) libghdl-elocs > $@ - python -m black $@ + $(PYTHON) -m black $@ chmod -w $@ ../../pyGHDL/libghdl/errorout.py: $(PNODESPY) ../errorout.ads $(RM) $@ $(PNODESPY) $(ELOCATIONS_FLAGS) libghdl-errorout > $@ - python -m black $@ + $(PYTHON) -m black $@ chmod -w $@ clean: |