- fixed fir_parallel Makefile git-svn-id: http://moon:8086/svn/vhdl/trunk@1439 cc03376c-175c-47c8-b038-4cd826a8556b
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
# -------------------------------------------------
|
|
# Global options
|
|
# -------------------------------------------------
|
|
LANG_STD := 93c
|
|
IEEE_STD := standard
|
|
WORK_DIR := work
|
|
WORK_LIB := work
|
|
|
|
# -------------------------------------------------
|
|
# Target options
|
|
# -------------------------------------------------
|
|
LIB_PATH := ../../../lib
|
|
|
|
SRCS := $(LIB_PATH)/PCK_FIO-2002.7/PCK_FIO_1993.vhd \
|
|
$(LIB_PATH)/PCK_FIO-2002.7/PCK_FIO_1993_BODY.vhd \
|
|
$(LIB_PATH)/misc/utils_pkg.vhd \
|
|
$(LIB_PATH)/fixed/fixed_util_pkg.vhd \
|
|
$(LIB_PATH)/filter/src/filter_pkg.vhd \
|
|
$(LIB_PATH)/filter/src/fir_pkg.vhd \
|
|
$(LIB_PATH)/filter/src/fir_stage_pkg.vhd \
|
|
$(LIB_PATH)/filter/src/fir_stage.vhd \
|
|
$(LIB_PATH)/filter/src/fir_parallel_pkg.vhd \
|
|
$(LIB_PATH)/filter/src/fir_parallel.vhd \
|
|
$(LIB_PATH)/filter/src/tb_fir_parallel.vhd
|
|
|
|
# -------------------------------------------------
|
|
# Compile
|
|
TARGET := tb_fir_parallel
|
|
ENTITY := tb_fir_parallel
|
|
WITH_GHW := y
|
|
GHDL_OPTS := -P../../../Common/sim/ieee_proposed/modelsim/build/ghdl/ieee_proposed
|
|
|
|
include ../../../Common/make/ghdl.mk
|
|
# -------------------------------------------------
|