Files
vhdl/lib/FIFO/ghdl/fifo_sync.inc
T
jens 5e1f2c0642 - added Makefile which calls all *.make
- fixed paths after refactoring


git-svn-id: http://moon:8086/svn/vhdl/trunk@1513 cc03376c-175c-47c8-b038-4cd826a8556b
2021-03-24 12:53:51 +00:00

21 lines
611 B
PHP

# -----------------------------------------------------------
PKG_NAME := FIFO_SYNC
ROOT_PATH := ../../..
LIB_PATH := $(ROOT_PATH)/lib
CUR_PATH := $(shell dirname $(lastword $(MAKEFILE_LIST)))
# -----------------------------------------------------------
SRCS := $(LIB_PATH)/rams/sim/dpram_1w1r2c_ra.vhd
SRCS += $(LIB_PATH)/FIFO/src/fifo_ctrl_pkg.vhd
SRCS += $(LIB_PATH)/FIFO/src/fifo_sync_ctrl.vhd
SRCS += $(LIB_PATH)/FIFO/src/fifo_sync.vhd
# -----------------------------------------------------------
$(PKG_NAME)_SRCS := $(addprefix $(CUR_PATH)/,$(SRCS))
SRCS :=
CUR_PATH :=
ROOT_PATH :=
LIB_PATH :=