- fixed paths to mk.files

This commit is contained in:
2022-06-30 20:24:14 +02:00
parent a38a63fb9e
commit de6be19c12
4 changed files with 8400 additions and 18 deletions
+8 -7
View File
@@ -1,7 +1,7 @@
# -------------------------------------------------
# Compile script for GHDL
# -------------------------------------------------
include ../make/defs.mk
include $(VHDL_HOME)/make/defs.mk
# -------------------------------------------------
# Global options
@@ -9,18 +9,19 @@ include ../make/defs.mk
LANG_STD := 93c
IEEE_STD := standard
WORK_LIB := unisim
TARGET := unisim
TARGET := ghdl
STD_LIB_PATH := xilinx/unisims
# -------------------------------------------------
# Target options
# -------------------------------------------------
SRCS := $(LIB_PATH)/unisims/unisim_VPKG.vhd
SRCS += $(LIB_PATH)/unisims/unisim_VCOMP.vhd
SRCS += $(LIB_PATH)/unisims/unisim_SMODEL.vhd
SRCS += $(LIB_PATH)/unisims/unisim_VITAL.vhd
SRCS := $(STD_LIB_PATH)/unisim_VPKG.vhd
SRCS += $(STD_LIB_PATH)/unisim_VCOMP.vhd
SRCS += $(STD_LIB_PATH)/unisim_SMODEL.vhd
SRCS += $(STD_LIB_PATH)/unisim_VITAL.vhd
GHDL_OPTS := -fsynopsys -fexplicit
include ../make/ghdl.mk
include $(VHDL_HOME)/make/ghdl.mk