git-svn-id: http://moon:8086/svn/vhdl/trunk@1559 cc03376c-175c-47c8-b038-4cd826a8556b
29 lines
905 B
Makefile
29 lines
905 B
Makefile
# -------------------------------------------------
|
|
# Compile script for GHDL
|
|
# -------------------------------------------------
|
|
include ../make/defs.mk
|
|
|
|
# -------------------------------------------------
|
|
# Global options
|
|
# -------------------------------------------------
|
|
LANG_STD := 93c
|
|
IEEE_STD := standard
|
|
WORK_LIB := ieee_proposed
|
|
TARGET := ieee_proposed
|
|
|
|
# -------------------------------------------------
|
|
# Target options
|
|
# -------------------------------------------------
|
|
SRCS := $(LIB_PATH)/standard_additions_c.vhdl
|
|
SRCS += $(LIB_PATH)/standard_textio_additions_c.vhdl
|
|
SRCS += $(LIB_PATH)/env_c.vhdl
|
|
SRCS += $(LIB_PATH)/std_logic_1164_additions.vhdl
|
|
SRCS += $(LIB_PATH)/numeric_std_additions.vhdl
|
|
SRCS += $(LIB_PATH)/numeric_std_unsigned_c.vhdl
|
|
SRCS += $(LIB_PATH)/fixed_float_types_c.vhdl
|
|
SRCS += $(LIB_PATH)/fixed_pkg_c.vhdl
|
|
SRCS += $(LIB_PATH)/float_pkg_c.vhdl
|
|
|
|
include ../make/ghdl.mk
|
|
|