]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/edma3_lld.git/blob - packages/ti/sdo/edma3/drv/sample/makefile
Added makefile for each component and the top level makefile
[keystone-rtos/edma3_lld.git] / packages / ti / sdo / edma3 / drv / sample / makefile
1 # Makefile for EDMA3 LLD DRV Sample
3 MODULE_NAME = edma3_lld_drv_sample
5 SRCDIR = src src/platforms
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
12 # Common source files and CFLAGS across all platforms and cores
13 SRCS_COMMON = sample_cs.c sample_init.c
14 CFLAGS_LOCAL_COMMON = -mi10
16 # Core/SoC/platform specific source files and CFLAGS
17 # Example: 
18 #   SRCS_<core/SoC/platform-name> = 
19 #   CFLAGS_LOCAL_<core/SoC/platform-name> =
20 SRCS_c6472-evm = sample_c6472_cfg.c sample_c6472_int_reg.c
21 SRCS_tci6486-evm = sample_tci6486_cfg.c sample_tci6486_int_reg.c
22 SRCS_tci6498-sim = sample_tci6498_cfg.c sample_tci6498_int_reg.c
23 SRCS_omapl138-evm = sample_omapl138_cfg.c sample_omapl138_int_reg.c
24 SRCS_c6748-evm = sample_c6748_cfg.c sample_c6748_int_reg.c
25 SRCS_da830-evm = sample_da830_cfg.c sample_da830_int_reg.c
26 SRCS_ti814x-evm = sample_ti814x_cfg.c sample_ti814x_int_reg.c
27 SRCS_ti816x-evm = sample_ti816x_cfg.c sample_ti816x_int_reg.c
28 SRCS_ti816x-sim = sample_ti816x_cfg.c sample_ti816x_int_reg.c
30 # Include common make files
31 include $(ROOTDIR)/makerules/common.mk
33 # OBJs and libraries are built by using rule defined in rules_<target>.mk 
34 #     and need not be explicitly specified here
36 # Nothing beyond this point