git-svn-id: http://moon:8086/svn/vhdl/trunk@1541 cc03376c-175c-47c8-b038-4cd826a8556b
20 lines
451 B
Makefile
20 lines
451 B
Makefile
include $(VHDL_HOME)/make/defs.mk
|
|
include $(LIB_PATH)/FIFO/ghdl/fifo_sync.inc
|
|
|
|
MOD_PATH := $(LIB_PATH)/JBUS/busmaster
|
|
|
|
SRCS += $(LIB_PATH)/misc/utils_pkg.vhd
|
|
SRCS += $(FIFO_SYNC_SRCS)
|
|
SRCS += $(MOD_PATH)/src/busmaster_types.vhd
|
|
SRCS += $(MOD_PATH)/src/busmaster_sync.vhd
|
|
SRCS += $(MOD_PATH)/src/tb_busmaster_sync.vhd
|
|
|
|
# Compile
|
|
TARGET := tb_busmaster_sync
|
|
ENTITY := tb_busmaster_sync
|
|
WITH_VCD := y
|
|
RUN_TIME := 40us
|
|
|
|
include $(VHDL_HOME)/make/ghdl.mk
|
|
|