aboutsummaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-08-14 07:12:14 +0200
committerTristan Gingold <tgingold@free.fr>2019-08-14 07:12:14 +0200
commitb814dbe04aa1658dc294b7db1f9005c497205f25 (patch)
treeb9c60d5e1975e258e0aa240834405401c6a46c65 /libraries
parent3f3974481acdbaa36a607b9178f2ae751748020e (diff)
downloadghdl-b814dbe04aa1658dc294b7db1f9005c497205f25.tar.gz
ghdl-b814dbe04aa1658dc294b7db1f9005c497205f25.tar.bz2
ghdl-b814dbe04aa1658dc294b7db1f9005c497205f25.zip
Fix build of upf packages for openieee.
Diffstat (limited to 'libraries')
-rw-r--r--libraries/Makefile.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/libraries/Makefile.inc b/libraries/Makefile.inc
index 098cd51f7..fbb184d74 100644
--- a/libraries/Makefile.inc
+++ b/libraries/Makefile.inc
@@ -82,17 +82,17 @@ IEEE93_BSRCS := $(addprefix ieee/v93/,$(IEEE_SRCS)) $(addprefix ieee/,$(MATH_SRC
else
IEEE_SRCS := std_logic_1164.vhdl std_logic_1164-body.vhdl \
numeric_bit.vhdl numeric_bit-body.vhdl \
- numeric_std.vhdl numeric_std-body.vhdl \
- upf.vhdl upf-body.vhdl
+ numeric_std.vhdl numeric_std-body.vhdl
+UPF_SRCS := openieee/upf.vhdl openieee/upf-body.vhdl
MATH_SRCS := math_real.vhdl math_real-body.vhdl
VITAL95_BSRCS :=
VITAL2000_BSRCS :=
IEEE08_BSRCS := v08/std_logic_1164.vhdl v08/std_logic_1164-body.vhdl \
math_real.vhdl math_real-body.vhdl
-IEEE87_BSRCS := $(addprefix openieee/v87/,$(IEEE_SRCS))
-IEEE93_BSRCS := $(addprefix openieee/v93/,$(IEEE_SRCS)) $(addprefix openieee/,$(MATH_SRCS))
-IEEE08_BSRCS := $(addprefix openieee/,$(IEEE08_BSRCS))
+IEEE87_BSRCS := $(addprefix openieee/v87/,$(IEEE_SRCS)) $(UPF_SRCS)
+IEEE93_BSRCS := $(addprefix openieee/v93/,$(IEEE_SRCS)) $(addprefix openieee/,$(MATH_SRCS)) $(UPF_SRCS)
+IEEE08_BSRCS := $(addprefix openieee/,$(IEEE08_BSRCS)) $(UPF_SRCS)
endif
ANALYZE=$(GHDL) -a $(GHDL_FLAGS)