git-svn-id: http://moon:8086/svn/vhdl/trunk@1497 cc03376c-175c-47c8-b038-4cd826a8556b
22 lines
714 B
PHP
22 lines
714 B
PHP
# -----------------------------------------------------------
|
|
PKG_NAME := CIC_DECIM_PIPE
|
|
ROOT_PATH := ../../../../..
|
|
LIB_PATH := $(ROOT_PATH)/lib
|
|
CUR_PATH := $(shell dirname $(lastword $(MAKEFILE_LIST)))
|
|
|
|
# -----------------------------------------------------------
|
|
SRCS := $(LIB_PATH)/misc/utils_pkg.vhd
|
|
SRCS += $(LIB_PATH)/fixed/ieee_proposed/fixed_util_pkg.vhd
|
|
SRCS += $(LIB_PATH)/radio/decimator/CIC/src/cic_i_pipe.vhd
|
|
SRCS += $(LIB_PATH)/radio/decimator/CIC/src/cic_c_pipe.vhd
|
|
SRCS += $(LIB_PATH)/radio/decimator/CIC/src/cic_decim_pipe.vhd
|
|
|
|
# -----------------------------------------------------------
|
|
$(PKG_NAME)_SRCS := $(addprefix $(CUR_PATH)/,$(SRCS))
|
|
|
|
SRCS :=
|
|
CUR_PATH :=
|
|
ROOT_PATH :=
|
|
LIB_PATH :=
|
|
|