aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/Makefile
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-06 06:46:32 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-06 06:46:32 +0200
commit1ed24355105d59e4b99fd888964ac4bba45fdcea (patch)
tree59c3239baf303061b9e23f18490f604d1d4f3f91 /src/vhdl/Makefile
parent6535ea096a13d8f03547f7d5e5018c0dea46252d (diff)
downloadghdl-1ed24355105d59e4b99fd888964ac4bba45fdcea.tar.gz
ghdl-1ed24355105d59e4b99fd888964ac4bba45fdcea.tar.bz2
ghdl-1ed24355105d59e4b99fd888964ac4bba45fdcea.zip
vhdl: move nodes_meta package to vhdl child.
Diffstat (limited to 'src/vhdl/Makefile')
-rw-r--r--src/vhdl/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/vhdl/Makefile b/src/vhdl/Makefile
index 43c288a11..be42197a5 100644
--- a/src/vhdl/Makefile
+++ b/src/vhdl/Makefile
@@ -25,14 +25,15 @@ PNODESPY=python/pnodespy.py
DEPS=vhdl-nodes.ads vhdl-nodes.adb.in $(PNODES)
-GEN_FILES=vhdl-nodes.adb nodes_meta.ads nodes_meta.adb \
+GEN_FILES=vhdl-nodes.adb vhdl-nodes_meta.ads vhdl-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=--node-file=vhdl-nodes.ads --field-file=vhdl-nodes.adb.in \
- --template-file=vhdl-nodes.adb.in --kind-file=vhdl-nodes.ads
+ --template-file=vhdl-nodes.adb.in --kind-file=vhdl-nodes.ads \
+ --meta-basename=vhdl-nodes_meta
ELOCATIONS_FLAGS=--node-file=vhdl-elocations.ads \
--field-file=vhdl-elocations.adb.in --kind-file=vhdl-nodes.ads \
@@ -45,12 +46,12 @@ vhdl-nodes.adb: vhdl-nodes.adb.in $(DEPS)
$(PNODES) $(NODES_FLAGS) body > $@
chmod -w $@
-nodes_meta.ads: nodes_meta.ads.in $(DEPS)
+vhdl-nodes_meta.ads: vhdl-nodes_meta.ads.in $(DEPS)
$(RM) $@
$(PNODES) $(NODES_FLAGS) meta_specs > $@
chmod -w $@
-nodes_meta.adb: nodes_meta.adb.in $(DEPS)
+vhdl-nodes_meta.adb: vhdl-nodes_meta.adb.in $(DEPS)
$(RM) $@
$(PNODES) $(NODES_FLAGS) meta_body > $@
chmod -w $@