diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-01-27 19:16:19 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-01-30 06:27:04 +0100 |
commit | f4e47ad72f6b7ec7b519b3ea00dcf411dd46f7b8 (patch) | |
tree | b9431981c054379c07e9bc85bca361ceb49aad8a /libraries | |
parent | 27a38f0c1b1cf8a2af13882861511018d9f4c5c9 (diff) | |
download | ghdl-f4e47ad72f6b7ec7b519b3ea00dcf411dd46f7b8.tar.gz ghdl-f4e47ad72f6b7ec7b519b3ea00dcf411dd46f7b8.tar.bz2 ghdl-f4e47ad72f6b7ec7b519b3ea00dcf411dd46f7b8.zip |
libraries: install license file for ieee2008.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/Makefile.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libraries/Makefile.inc b/libraries/Makefile.inc index 124590733..f0ab3f253 100644 --- a/libraries/Makefile.inc +++ b/libraries/Makefile.inc @@ -34,7 +34,8 @@ ifeq ($(enable_openieee),false) # Full libraries vhdl.libs.v87: std.v87 ieee.v87 synopsys.v87 vhdl.libs.v93: std.v93 ieee.v93 synopsys.v93 mentor.v93 -vhdl.libs.v08: std.v08 ieee.v08 synopsys.v08 +vhdl.libs.v08: std.v08 ieee.v08 synopsys.v08 \ + $(LIBDST_DIR)/src/ieee2008/LICENSE else # GPL compatible vhdl.libs.v87: std.v87 ieee.v87 synopsys.v87 @@ -309,6 +310,9 @@ $(STD08_DIR)/std-obj08.cf: $(ANALYZE_DEP) $(STD08_SRCS) $(LIBDST_DIR)/src/ieee2008/%.vhdl: $(LIBSRC_DIR)/ieee2008/%.vhdl $(CP) $< $@ +$(LIBDST_DIR)/src/ieee2008/LICENSE: $(LIBSRC_DIR)/ieee2008/LICENSE + $(CP) $< $@ + $(LIBDST_DIR)/src/openieee/v08/%.vhdl: $(LIBSRC_DIR)/openieee/v08/%.vhdl $(CP) $< $@ |