# Makefile for EDMA3 LLD DRV MODULE_NAME = edma3_lld_drv SRCDIR = src INCDIR = . ../../../.. src # List all the external components/interfaces, whose interface header files # need to be included for this component INCLUDE_EXTERNAL_INTERFACES = # Common source files and CFLAGS across all platforms and cores SRCS_COMMON = edma3_drv_init.c edma3_drv_basic.c edma3_drv_adv.c ifeq ($(CORE),c6xdsp) CFLAGS_LOCAL_COMMON = -mi10 endif # Core/SoC/platform specific source files and CFLAGS # Example: # SRCS_ = # CFLAGS_LOCAL_ = # Include common make files ifeq ($(MAKERULEDIR), ) #Makerule path not defined, define this and assume relative path from ROOTDIR MAKERULEDIR := $(ROOTDIR)/makerules export MAKERULEDIR endif include $(MAKERULEDIR)/common.mk # OBJs and libraries are built by using rule defined in rules_.mk # and need not be explicitly specified here # Nothing beyond this point