## two usages:
## 1. make clean && make
## 2. make clean && make target=gnr_dec/gnr_enc/oyb_dec/oyb_enc #those targets can be found in project_config.mk.
#
## following are default values when don't specify target, set all to y for checking compile errors.
## the variables in this file can be changed to y or n as you wanted.
## the variables in project_config.mk are the default parameters for different projects.
#
##ifeq ($(strip $(target)),)
##else
##include $(PWD)/project_config.mk
##endif
#
#
dma-objs =
ifeq ($(SUPPORT_DMA_TRANSFER), 1)
dma-objs += hal/debug_print.o hal/vdma_hal.o hal/vdma_drv.o \
	hal/B0_HalVdma.o hal/HalTDMA.o xdx_dma_dev.o xdx-virt-dma.o xdx_dma_fs.o \
	dma_drv_common.o xdx_dma.o vdma_irq.o xdx_dma_drv_a0.o xdx_dma_drv_b0.o xdx_dma_dbglevel.o
endif
#
#
## vdma
XDX_DMA_DRV := $(dma-objs)
#
XDX_DMA_FILES :=
#
XDX_DMA_FILES = $(addprefix dma/,$(XDX_DMA_DRV))
#
