20 lines
462 B
Makefile
20 lines
462 B
Makefile
include $(VHDL_HOME)/make/defs.mk
|
|
include $(LIB_PATH)/FIFO/ghdl/fifo_async.inc
|
|
|
|
MOD_PATH := $(LIB_PATH)/JBUS/busmaster
|
|
|
|
SRCS += $(LIB_PATH)/misc/utils_pkg.vhd
|
|
SRCS += $(FIFO_ASYNC_SRCS)
|
|
SRCS += $(MOD_PATH)/src/busmaster_types.vhd
|
|
SRCS += $(MOD_PATH)/src/busmaster_async.vhd
|
|
SRCS += $(MOD_PATH)/src/tb_busmaster_async.vhd
|
|
|
|
# Compile
|
|
TARGET := tb_busmaster_async
|
|
ENTITY := tb_busmaster_async
|
|
RUN_TIME := 80us
|
|
WAVE_FORMAT := vcd
|
|
|
|
include $(VHDL_HOME)/make/ghdl.mk
|
|
|