]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/edma3_lld.git/blob - examples/edma3_driver/evmtda2xx/makefile
Update for additional K2L and K2E targets
[keystone-rtos/edma3_lld.git] / examples / edma3_driver / evmtda2xx / makefile
1 # Makefile for edma3 lld app
3 APP_NAME = edma3_drv_tda2xx_sample
5 SRCDIR = ../src
6 INCDIR = ../src
8 # List all the external components/interfaces, whose interface header files 
9 #  need to be included for this component
10 INCLUDE_EXERNAL_INTERFACES = bios xdc edma3_lld
12 # List all the components required by the application
13 COMP_LIST_c6xdsp = edma3_lld_drv edma3_lld_rm
15 # XDC CFG File
16 XDC_CFG_FILE_c6xdsp = rtsc_config/edma3_drv_bios6_tda2xx_st_sample.cfg
18 CONFIG_BLD_XDC_CUSTOM = rtsc_config/custom_config.bld
20 PLATFORM_XDC_CUSTOM = ti.platforms.simVayu:DSP_1
22 # Common source files and CFLAGS across all platforms and cores
23 SRCS_COMMON = common.c dma_misc_test.c dma_test.c qdma_test.c dma_chain_test.c \
24               dma_ping_pong_test.c main.c dma_link_test.c dma_poll_test.c      \
25               qdma_link_test.c
26 CFLAGS_LOCAL_COMMON = -DBUILD_TDA2XX_DSP
28 # Core/SoC/platform specific source files and CFLAGS
29 # Example: 
30 #   SRCS_<core/SoC/platform-name> = 
31 #   CFLAGS_LOCAL_<core/SoC/platform-name> =
33 # Include common make files
34 include $(ROOTDIR)/makerules/common.mk
36 # OBJs and libraries are built by using rule defined in rules_<target>.mk 
37 #     and need not be explicitly specified here
39 # Nothing beyond this point