diff options
author | Tristan Gingold | 2014-09-11 05:39:42 +0200 |
---|---|---|
committer | Tristan Gingold | 2014-09-11 05:39:42 +0200 |
commit | 76790ce35751b7db120cbde496782c161d376c60 (patch) | |
tree | 368d1bd7202fd68fce7ef0394ac6a60696edb7ce /libraries | |
parent | bc29eec25beb8e337bc7ad8ac38734d9491fbe94 (diff) | |
download | ghdl-76790ce35751b7db120cbde496782c161d376c60.tar.gz ghdl-76790ce35751b7db120cbde496782c161d376c60.tar.bz2 ghdl-76790ce35751b7db120cbde496782c161d376c60.zip |
vhdl2008: add translation and support for most of implicit operators.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/Makefile.inc b/libraries/Makefile.inc index 9228351..5695068 100644 --- a/libraries/Makefile.inc +++ b/libraries/Makefile.inc @@ -208,8 +208,8 @@ std.v08: $(LIB08_DIR) $(STD08_SRCS) force mkdir $(STD08_DIR) prev=`pwd`; cd $(STD08_DIR); \ for i in $(STD08_SRCS); do \ - echo $$i; \ - $(ANALYZE08) --bootstrap --work=std $(REL_DIR)/$$i || exit 1; \ + cmd="$(ANALYZE08) --bootstrap --work=std $(REL_DIR)/$$i"; \ + echo $$cmd; eval $$cmd || exit 1; \ done; \ cd $$prev |