Files
vhdl/make/tb_new.make
T
jens b9f08b774d - renamed
git-svn-id: http://moon:8086/svn/vhdl/trunk@1550 cc03376c-175c-47c8-b038-4cd826a8556b
2021-03-28 13:28:02 +00:00

22 lines
579 B
Makefile

# -----------------------------------------------------------
include $(VHDL_HOME)/make/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
# -----------------------------------------------------------