32 lines
912 B
Makefile
32 lines
912 B
Makefile
# -------------------------------------------------
|
|
include $(VHDL_HOME)/defs.mk
|
|
include $(LIB_PATH)/radio/nco/ghdl/nco_lut.inc
|
|
|
|
# -------------------------------------------------
|
|
# Global options
|
|
# -------------------------------------------------
|
|
LANG_STD := 93c
|
|
IEEE_STD := standard
|
|
WORK_LIB := work
|
|
|
|
# -------------------------------------------------
|
|
# Target options
|
|
# -------------------------------------------------
|
|
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
|
|
RUN_TIME := 250us
|
|
WAVE_FORMAT := vcd
|
|
|
|
GHDL_OPTS := -P$(LIB_PATH)/fixed/ieee_proposed/build/fixed_pkg/ieee_proposed
|
|
|
|
include $(VHDL_MAKE_HOME)/ghdl.mk
|
|
# -------------------------------------------------
|
|
|