X-Git-Url: https://git.ti.com/gitweb?p=keystone-rtos%2Fedma3_lld.git;a=blobdiff_plain;f=packages%2Fti%2Fsdo%2Fedma3%2Fdrv%2Fmakefile;h=10783e3712e2bf109d9ba51b89315ea653531482;hp=c6f5ccc228ccc196885f862d111549d3dcd4cf41;hb=dab1d0f796b0896a9744de1b6338e37744d2c4b9;hpb=b73a262bf6f6d366e3bf83d0c116be2b61a86dde;ds=sidebyside diff --git a/packages/ti/sdo/edma3/drv/makefile b/packages/ti/sdo/edma3/drv/makefile index c6f5ccc..10783e3 100644 --- a/packages/ti/sdo/edma3/drv/makefile +++ b/packages/ti/sdo/edma3/drv/makefile @@ -5,9 +5,9 @@ MODULE_NAME = edma3_lld_drv SRCDIR = src INCDIR = . ../../../.. src -# List all the external components/interfaces, whose interface header files +# List all the external components/interfaces, whose interface header files # need to be included for this component -INCLUDE_EXERNAL_INTERFACES = +INCLUDE_EXERNAL_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 @@ -16,14 +16,19 @@ CFLAGS_LOCAL_COMMON = -mi10 endif # Core/SoC/platform specific source files and CFLAGS -# Example: -# SRCS_ = +# Example: +# SRCS_ = # CFLAGS_LOCAL_ = # Include common make files -include $(ROOTDIR)/makerules/common.mk +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 +# OBJs and libraries are built by using rule defined in rules_.mk # and need not be explicitly specified here # Nothing beyond this point