27 lines
768 B
Makefile
27 lines
768 B
Makefile
include $(VHDL_MAKE_HOME)/defs.mk
|
|
|
|
include $(LIB_PATH)/FIFO/ghdl/fifo_sync.inc
|
|
include $(LIB_PATH)/filter/ghdl/fir_semi_parallel.inc
|
|
include $(LIB_PATH)/radio/nco/ghdl/mix_cordic_pipe.inc
|
|
include $(LIB_PATH)/radio/decimator/CIC/ghdl/cic_decim_pipe.inc
|
|
|
|
SRCS += $(FIFO_SYNC_SRCS)
|
|
SRCS += $(FIR_SEMI_PARALLEL_SRCS)
|
|
SRCS += $(MIX_CORDIC_PIPE_SRCS)
|
|
SRCS += $(CIC_DECIM_PIPE_SRCS)
|
|
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/ddc/src/ddc.vhd
|
|
SRCS += $(LIB_PATH)/radio/ddc/src/tb_ddc.vhd
|
|
|
|
# Compile
|
|
TARGET := tb_ddc
|
|
ENTITY := tb_ddc
|
|
RUN_TIME := 100us
|
|
WAVE_FORMAT := vcd
|
|
|
|
GHDL_OPTS := -P$(LIB_PATH)/fixed/ieee_proposed/build/fixed_pkg/ieee_proposed
|
|
|
|
include $(VHDL_MAKE_HOME)/ghdl.mk
|
|
|