git-svn-id: http://moon:8086/svn/vhdl/trunk@1476 cc03376c-175c-47c8-b038-4cd826a8556b
16 lines
330 B
Makefile
16 lines
330 B
Makefile
ROOT_PATH := ../../..
|
|
LIB_PATH := $(ROOT_PATH)/lib
|
|
|
|
SRCS += $(LIB_PATH)/FIFO/src/fifo_ctrl_pkg.vhd
|
|
SRCS += $(LIB_PATH)/FIFO/src/gray_counter.vhd
|
|
SRCS += $(LIB_PATH)/FIFO/src/tb_gray_counter.vhd
|
|
|
|
# Compile
|
|
TARGET := tb_gray_counter
|
|
ENTITY := tb_gray_counter
|
|
WITH_VCD := y
|
|
RUN_TIME := 1us
|
|
|
|
include $(ROOT_PATH)/Common/make/ghdl.mk
|
|
|