17 lines
295 B
Makefile
17 lines
295 B
Makefile
include $(VHDL_MAKE_HOME)/defs.mk
|
|
include fifo_async.inc
|
|
|
|
ROOT_PATH := ../../..
|
|
LIB_PATH := $(ROOT_PATH)/lib
|
|
|
|
SRCS += $(FIFO_ASYNC_SRCS)
|
|
SRCS += $(LIB_PATH)/FIFO/src/tb_fifo_async.vhd
|
|
|
|
# Compile
|
|
TARGET := tb_fifo_async
|
|
ENTITY := tb_fifo_async
|
|
RUN_TIME := 5us
|
|
|
|
include $(VHDL_MAKE_HOME)/ghdl.mk
|
|
|