git-svn-id: http://moon:8086/svn/vhdl/trunk@1462 cc03376c-175c-47c8-b038-4cd826a8556b
30 lines
778 B
Makefile
30 lines
778 B
Makefile
# -------------------------------------------------
|
|
# Global options
|
|
# -------------------------------------------------
|
|
LANG_STD := 08
|
|
IEEE_STD := standard
|
|
WORK_LIB := work
|
|
|
|
# -------------------------------------------------
|
|
# Target options
|
|
# -------------------------------------------------
|
|
LIB_PATH := ../../../lib
|
|
|
|
SRCS := fixed_util_pkg.vhd
|
|
SRCS += test.vhd
|
|
|
|
# -------------------------------------------------
|
|
# Compile
|
|
TARGET := test
|
|
ENTITY := test
|
|
WITH_GHW := y
|
|
RUN_TIME := 2000us
|
|
|
|
#GHDL_OPTS := -P$(LIB_PATH)/fixed/ieee_proposed/build/fixed_pkg/ieee_proposed
|
|
#GHDL_OPTS := -P../../../../Common/sim/ieee_proposed/modelsim/build/ghdl/ieee_proposed
|
|
GHDL_OPTS += -frelaxed-rules
|
|
|
|
|
|
include ../../../Common/make/ghdl.mk
|
|
# -------------------------------------------------
|