]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/edma3_lld.git/blob - examples/edma3_driver/evm6657/makefile
INCLUDE_EXERNAL_ to INCLUDE_EXTERNAL_
[keystone-rtos/edma3_lld.git] / examples / edma3_driver / evm6657 / makefile
1 # Makefile for edma3 lld app
3 APP_NAME = edma3_drv_6657_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_EXTERNAL_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_c6657_st_sample.cfg
18 # Common source files and CFLAGS across all platforms and cores
19 SRCS_COMMON = common.c dma_misc_test.c dma_test.c qdma_test.c dma_chain_test.c \
20               dma_ping_pong_test.c main.c dma_link_test.c dma_poll_test.c      \
21               qdma_link_test.c
22 CFLAGS_LOCAL_COMMON =
24 # Core/SoC/platform specific source files and CFLAGS
25 # Example:
26 #   SRCS_<core/SoC/platform-name> =
27 #   CFLAGS_LOCAL_<core/SoC/platform-name> =
29 # Include common make files
30 include $(ROOTDIR)/makerules/common.mk
32 # OBJs and libraries are built by using rule defined in rules_<target>.mk
33 #     and need not be explicitly specified here
35 # Nothing beyond this point