aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/Makefile
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-05 20:57:21 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-05 20:57:21 +0200
commit6535ea096a13d8f03547f7d5e5018c0dea46252d (patch)
tree845f866bd86148474c48802d2a185019e7a60fb0 /src/vhdl/Makefile
parent7892c6e7945d5e4b46ddde4f18debe1c06bd3e12 (diff)
downloadghdl-6535ea096a13d8f03547f7d5e5018c0dea46252d.tar.gz
ghdl-6535ea096a13d8f03547f7d5e5018c0dea46252d.tar.bz2
ghdl-6535ea096a13d8f03547f7d5e5018c0dea46252d.zip
vhdl: rename iirs to vhdl.nodes
Diffstat (limited to 'src/vhdl/Makefile')
-rw-r--r--src/vhdl/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/vhdl/Makefile b/src/vhdl/Makefile
index dc13ff90f..43c288a11 100644
--- a/src/vhdl/Makefile
+++ b/src/vhdl/Makefile
@@ -23,23 +23,24 @@
PNODES=../xtools/pnodes.py
PNODESPY=python/pnodespy.py
-DEPS=iirs.ads iirs.adb.in $(PNODES)
+DEPS=vhdl-nodes.ads vhdl-nodes.adb.in $(PNODES)
-GEN_FILES=iirs.adb nodes_meta.ads nodes_meta.adb \
+GEN_FILES=vhdl-nodes.adb nodes_meta.ads nodes_meta.adb \
vhdl-elocations.adb vhdl-elocations_meta.ads vhdl-elocations_meta.adb \
python/libghdl/iirs.py python/libghdl/nodes_meta.py \
python/libghdl/std_names.py python/libghdl/tokens.py \
python/libghdl/elocations.py python/libghdl/errorout.py
-NODES_FLAGS=--field-file=iirs.adb.in
+NODES_FLAGS=--node-file=vhdl-nodes.ads --field-file=vhdl-nodes.adb.in \
+ --template-file=vhdl-nodes.adb.in --kind-file=vhdl-nodes.ads
ELOCATIONS_FLAGS=--node-file=vhdl-elocations.ads \
- --field-file=vhdl-elocations.adb.in \
+ --field-file=vhdl-elocations.adb.in --kind-file=vhdl-nodes.ads \
--template-file=vhdl-elocations.adb.in --meta-basename=vhdl-elocations_meta
all: $(GEN_FILES)
-iirs.adb: iirs.adb.in $(DEPS)
+vhdl-nodes.adb: vhdl-nodes.adb.in $(DEPS)
$(RM) $@
$(PNODES) $(NODES_FLAGS) body > $@
chmod -w $@