]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/edma3_lld.git/blob - packages/ti/sdo/edma3/rm/makefile
Update to support Additional keystone-2 platforms: K2L and K2E. Changes included...
[keystone-rtos/edma3_lld.git] / packages / ti / sdo / edma3 / rm / makefile
1 # Makefile for EDMA3 LLD RM
3 MODULE_NAME = edma3_lld_rm
5 SRCDIR = src src/configs
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 = 
12 # Common source files and CFLAGS across all platforms and cores
13 SRCS_COMMON = edma3resmgr.c edma3_rm_gbl_data.c
14 ifeq ($(CORE),c6xdsp)
15 CFLAGS_LOCAL_COMMON = -mi10
16 endif
18 # Defines for picking proper configuration based on the cores
19 ifeq ($(CORE),c6xdsp)
20 CFLAGS_LOCAL_c6a811x-evm = -DBUILD_C6A811X_DSP
21 endif
22 ifeq ($(CORE),a8host)
23 CFLAGS_LOCAL_c6a811x-evm = -DBUILD_C6A811X_A8
24 endif
25 ifeq ($(CORE),m3video)
26 CFLAGS_LOCAL_c6a811x-evm = -DBUILD_C6A811X_M3VIDEO
27 endif
28 ifeq ($(CORE),m3vpss)
29 CFLAGS_LOCAL_c6a811x-evm = -DBUILD_C6A811X_M3VPSS
30 endif
31 ifeq ($(CORE),a15host)
32 CFLAGS_LOCAL_tda2xx-evm = -DBUILD_TDA2XX_MPU
33 endif
35 # Core/SoC/platform specific source files and CFLAGS
36 # Example: 
37 #   SRCS_<core/SoC/platform-name> = 
38 #   CFLAGS_LOCAL_<core/SoC/platform-name> =
39 SRCS_c6472-evm = edma3_c6472_cfg.c
40 SRCS_tci6486-evm = edma3_tci6486_cfg.c
41 SRCS_tci6608-sim = edma3_tci6608_cfg.c
42 SRCS_tci6616-sim = edma3_tci6616_cfg.c
43 SRCS_tci6614-sim = edma3_tci6614_cfg.c
44 SRCS_c6657-sim = edma3_c6657_cfg.c
45 SRCS_tci6638k2k-sim = edma3_tci6638k2k_cfg.c
46 SRCS_c6670-evm = edma3_c6670_cfg.c
47 SRCS_c6678-evm = edma3_c6678_cfg.c
48 SRCS_tci6614-evm = edma3_tci6614_cfg.c
49 SRCS_c6657-evm = edma3_c6657_cfg.c
50 SRCS_tci6638k2k-evm = edma3_tci6638k2k_cfg.c
51 SRCS_tci6636k2h-evm = edma3_tci6636k2h_cfg.c
52 SRCS_tci6630k2l-evm = edma3_tci6630k2l_cfg.c
53 SRCS_c66ak2e-evm = edma3_c66ak2e_cfg.c
54 SRCS_omapl138-evm = edma3_omapl138_cfg.c
55 SRCS_c6748-evm = edma3_c6748_cfg.c
56 SRCS_da830-evm = edma3_da830_cfg.c
57 SRCS_omap4-evm = edma3_omap4_cfg.c
58 SRCS_ti814x-evm = edma3_ti814x_cfg.c
59 SRCS_tda2xx-evm = edma3_tda2xx_cfg.c
60 SRCS_ti816x-evm = edma3_ti816x_cfg.c
61 SRCS_c6a811x-evm = edma3_c6a811x_cfg.c
62 SRCS_ti816x-sim = edma3_ti816x_cfg.c
63 CFLAGS_LOCAL_generic = -DGENERIC
65 # Include common make files
66 include $(ROOTDIR)/makerules/common.mk
68 # OBJs and libraries are built by using rule defined in rules_<target>.mk 
69 #     and need not be explicitly specified here
71 # Nothing beyond this point