git-svn-id: http://moon:8086/svn/vhdl/trunk@1482 cc03376c-175c-47c8-b038-4cd826a8556b
23 lines
465 B
Makefile
23 lines
465 B
Makefile
include emac_rx.inc
|
|
include emac_tx.inc
|
|
|
|
ROOT_PATH := ../../..
|
|
LIB_PATH := $(ROOT_PATH)/lib
|
|
|
|
SRCS += $(FIFO_SYNC_SRCS)
|
|
SRCS += $(FIFO_ASYNC_SRCS)
|
|
SRCS += $(EMAC_RX_SRCS)
|
|
SRCS += $(EMAC_TX_SRCS)
|
|
SRCS += $(LIB_PATH)/emac/src/emac_top_jb.vhd
|
|
SRCS += $(LIB_PATH)/emac/src/pkt_gen.vhd
|
|
SRCS += $(LIB_PATH)/emac/src/tb_emac_top_jb.vhd
|
|
|
|
# Compile
|
|
TARGET := tb_emac_top_jb
|
|
ENTITY := tb_emac_top_jb
|
|
WITH_VCD := y
|
|
RUN_TIME := 2000us
|
|
|
|
include $(ROOT_PATH)/Common/make/ghdl.mk
|
|
|