22 lines
574 B
Makefile
22 lines
574 B
Makefile
# -----------------------------------------------------------
|
|
include $(VHDL_HOME)/defs.mk
|
|
# -----------------------------------------------------------
|
|
include package1.inc
|
|
include package2.inc
|
|
|
|
# -----------------------------------------------------------
|
|
SRCS := $(PACKAGE1_SRCS)
|
|
SRCS += $(PACKAGE2_SRCS)
|
|
SRCS += $(LIB_PATH)/tb_new.vhd
|
|
|
|
# -----------------------------------------------------------
|
|
# Compile
|
|
TARGET := tb_new
|
|
ENTITY := tb_new
|
|
WITH_VCD := y
|
|
RUN_TIME := 1us
|
|
|
|
include $(VHDL_HOME)/make/ghdl.mk
|
|
# -----------------------------------------------------------
|
|
|