21 lines
596 B
Makefile
21 lines
596 B
Makefile
# -----------------------------------------------------------
|
|
include $(VHDL_HOME)/defs.mk
|
|
# -----------------------------------------------------------
|
|
include $(VHDL_HOME)/lib/uart/ghdl/uart_generic.inc
|
|
|
|
# -----------------------------------------------------------
|
|
MOD_PATH := $(LIB_PATH)/uart/src
|
|
|
|
SRCS := $(UART_GENERIC_SRCS)
|
|
SRCS += $(MOD_PATH)/tb_uart.vhd
|
|
|
|
# -----------------------------------------------------------
|
|
# Compile
|
|
TARGET := tb_uart_generic
|
|
ENTITY := tb_uart
|
|
RUN_TIME := 880us
|
|
|
|
include $(VHDL_MAKE_HOME)/ghdl.mk
|
|
# -----------------------------------------------------------
|
|
|