git-svn-id: http://moon:8086/svn/vhdl/trunk@1559 cc03376c-175c-47c8-b038-4cd826a8556b
27 lines
714 B
Makefile
27 lines
714 B
Makefile
# -------------------------------------------------
|
|
# Compile script for GHDL
|
|
# -------------------------------------------------
|
|
include ../make/defs.mk
|
|
|
|
# -------------------------------------------------
|
|
# Global options
|
|
# -------------------------------------------------
|
|
LANG_STD := 93c
|
|
IEEE_STD := standard
|
|
WORK_LIB := unisim
|
|
TARGET := unisim
|
|
|
|
# -------------------------------------------------
|
|
# 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
|
|
|
|
GHDL_OPTS := -fsynopsys -fexplicit
|
|
|
|
include ../make/ghdl.mk
|
|
|
|
|