git-svn-id: http://moon:8086/svn/vhdl/trunk@1488 cc03376c-175c-47c8-b038-4cd826a8556b
33 lines
886 B
Makefile
33 lines
886 B
Makefile
# -------------------------------------------------
|
|
include nco_lut.inc
|
|
|
|
# -------------------------------------------------
|
|
# Global options
|
|
# -------------------------------------------------
|
|
LANG_STD := 93c
|
|
IEEE_STD := standard
|
|
WORK_LIB := work
|
|
|
|
# -------------------------------------------------
|
|
# Target options
|
|
# -------------------------------------------------
|
|
LIB_PATH := ../../../../lib
|
|
|
|
SRCS += $(LIB_PATH)/PCK_FIO-2002.7/PCK_FIO_1993.vhd
|
|
SRCS += $(LIB_PATH)/PCK_FIO-2002.7/PCK_FIO_1993_BODY.vhd
|
|
SRCS += $(NCO_LUT_SRCS)
|
|
SRCS += $(LIB_PATH)/radio/nco/src/tb_nco_lut.vhd
|
|
|
|
# -------------------------------------------------
|
|
# Compile
|
|
TARGET := tb_nco_lut
|
|
ENTITY := tb_nco
|
|
WITH_VCD := y
|
|
RUN_TIME := 250us
|
|
|
|
GHDL_OPTS := -P$(LIB_PATH)/fixed/ieee_proposed/build/fixed_pkg/ieee_proposed
|
|
|
|
include ../../../../Common/make/ghdl.mk
|
|
# -------------------------------------------------
|
|
|