git-svn-id: http://moon:8086/svn/vhdl/trunk@1458 cc03376c-175c-47c8-b038-4cd826a8556b
37 lines
1.2 KiB
Makefile
37 lines
1.2 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/cordic/src/cordic_pkg.vhd
|
|
SRCS += $(LIB_PATH)/radio/cordic/src/cordic_pipe_stage.vhd
|
|
SRCS += $(LIB_PATH)/radio/cordic/src/cordic_pipe_pre.vhd
|
|
SRCS += $(LIB_PATH)/radio/cordic/src/cordic_pipe_post.vhd
|
|
SRCS += $(LIB_PATH)/radio/cordic/src/cordic_pipe_top.vhd
|
|
SRCS += $(LIB_PATH)/radio/nco/src/mix_cordic.vhd
|
|
SRCS += $(LIB_PATH)/radio/nco/src/tb_nco_cordic.vhd
|
|
|
|
# -------------------------------------------------
|
|
# Compile
|
|
TARGET := nco_cordic
|
|
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
|
|
# -------------------------------------------------
|
|
|
|
|