diff options
author | Tristan Gingold | 2014-10-22 13:15:33 +0200 |
---|---|---|
committer | Tristan Gingold | 2014-10-22 13:15:33 +0200 |
commit | e00d31baa0e7190b959cfb03df03b260e402da05 (patch) | |
tree | 9ed433cdd9d38d6432e3dc016d1b942fbf97519c /xtools/Makefile | |
parent | 0e199cbea1070c016d29348cd659b9e6ca688afb (diff) | |
download | ghdl-e00d31baa0e7190b959cfb03df03b260e402da05.tar.gz ghdl-e00d31baa0e7190b959cfb03df03b260e402da05.tar.bz2 ghdl-e00d31baa0e7190b959cfb03df03b260e402da05.zip |
Rework for support of generic packages.
Diffstat (limited to 'xtools/Makefile')
-rw-r--r-- | xtools/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xtools/Makefile b/xtools/Makefile index 599e0da..6504fbc 100644 --- a/xtools/Makefile +++ b/xtools/Makefile @@ -17,19 +17,19 @@ DEPS=../iirs.ads ../nodes.ads ./pnodes.py -all: ../iirs.adb ../disp_tree.adb ../nodes_gc.adb +all: ../iirs.adb ../nodes_meta.ads ../nodes_meta.adb ../iirs.adb: ../iirs.adb.in $(DEPS) $(RM) $@ ./pnodes.py body > $@ chmod -w $@ -../disp_tree.adb: ../disp_tree.adb.in $(DEPS) +../nodes_meta.ads: ../nodes_meta.ads.in $(DEPS) $(RM) $@ - ./pnodes.py disp_tree > $@ + ./pnodes.py meta_specs > $@ chmod -w $@ -../nodes_gc.adb: ../nodes_gc.adb.in $(DEPS) +../nodes_meta.adb: ../nodes_meta.adb.in $(DEPS) $(RM) $@ - ./pnodes.py mark_tree > $@ + ./pnodes.py meta_body > $@ chmod -w $@ |