diff options
author | Torsten Maehne <Torsten.Maehne@gmx.de> | 2019-11-02 16:16:56 +0100 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2019-11-02 16:16:56 +0100 |
commit | 534f39a26135724ceaa81b60de8856b723953f5b (patch) | |
tree | 88892dd3e82205e2f2ba83640c036168dca479e6 | |
parent | 8ba9adc3f24e9761c5aae4810fae3f4529ffa9f1 (diff) | |
download | ghdl-534f39a26135724ceaa81b60de8856b723953f5b.tar.gz ghdl-534f39a26135724ceaa81b60de8856b723953f5b.tar.bz2 ghdl-534f39a26135724ceaa81b60de8856b723953f5b.zip |
Install source of std.standard package to respective VHDL standard version sub-directories (#995)
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 713bb79b8..e86cd1eff 100644 --- a/Makefile.in +++ b/Makefile.in @@ -126,9 +126,9 @@ all: Makefile all.$(backend) all.libghdl install: install.$(backend) # Generate std.standard package VHDL source - $(DESTDIR)$(bindir)/ghdl$(EXEEXT) --disp-standard --std=87 > $(DESTDIR)$(VHDL_LIB_DIR)/src/std/standard.v87 - $(DESTDIR)$(bindir)/ghdl$(EXEEXT) --disp-standard --std=93 > $(DESTDIR)$(VHDL_LIB_DIR)/src/std/standard.v93 - $(DESTDIR)$(bindir)/ghdl$(EXEEXT) --disp-standard --std=08 > $(DESTDIR)$(VHDL_LIB_DIR)/src/std/standard.v08 + $(DESTDIR)$(bindir)/ghdl$(EXEEXT) --disp-standard --std=87 > $(DESTDIR)$(VHDL_LIB_DIR)/src/std/v87/standard.vhdl + $(DESTDIR)$(bindir)/ghdl$(EXEEXT) --disp-standard --std=93 > $(DESTDIR)$(VHDL_LIB_DIR)/src/std/v93/standard.vhdl + $(DESTDIR)$(bindir)/ghdl$(EXEEXT) --disp-standard --std=08 > $(DESTDIR)$(VHDL_LIB_DIR)/src/std/v08/standard.vhdl uninstall: uninstall.$(backend) |