git-svn-id: http://moon:8086/svn/vhdl/trunk@1459 cc03376c-175c-47c8-b038-4cd826a8556b
34 lines
1.0 KiB
Makefile
34 lines
1.0 KiB
Makefile
# -------------------------------------------------
|
|
# Global options
|
|
# -------------------------------------------------
|
|
LANG_STD := 93c
|
|
IEEE_STD := standard
|
|
WORK_LIB := work
|
|
|
|
# -------------------------------------------------
|
|
# Target options
|
|
# -------------------------------------------------
|
|
LIB_PATH := ../../../../lib
|
|
|
|
SRCS := $(LIB_PATH)/fixed/ieee_proposed/fixed_util_pkg.vhd
|
|
SRCS += $(LIB_PATH)/PCK_FIO-2002.7/PCK_FIO_1993.vhd
|
|
SRCS += $(LIB_PATH)/PCK_FIO-2002.7/PCK_FIO_1993_BODY.vhd
|
|
SRCS += $(LIB_PATH)/radio/nco/src/nco_pkg.vhd
|
|
SRCS += $(LIB_PATH)/radio/nco/src/waverom_dual.vhd
|
|
SRCS += $(LIB_PATH)/radio/nco/src/wavelut.vhd
|
|
SRCS += $(LIB_PATH)/radio/nco/src/nco_lut_dbg.vhd
|
|
SRCS += $(LIB_PATH)/radio/nco/src/tb_nco_lut.vhd
|
|
|
|
# -------------------------------------------------
|
|
# Compile
|
|
TARGET := 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
|
|
# -------------------------------------------------
|
|
|