]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/edma3_lld.git/blobdiff - examples/edma3_driver/evmTDA3xx_EVE/makefile
Adding adaslow - tda3xx platform
[keystone-rtos/edma3_lld.git] / examples / edma3_driver / evmTDA3xx_EVE / makefile
diff --git a/examples/edma3_driver/evmTDA3xx_EVE/makefile b/examples/edma3_driver/evmTDA3xx_EVE/makefile
new file mode 100644 (file)
index 0000000..e3865e1
--- /dev/null
@@ -0,0 +1,40 @@
+# Makefile for edma3 lld app
+
+APP_NAME = edma3_drv_tda3xx_sample
+
+SRCDIR = ../src .
+INCDIR = ../src
+
+# List all the external components/interfaces, whose interface header files
+#  need to be included for this component
+INCLUDE_EXTERNAL_INTERFACES = bios xdc edma3_lld
+
+# List all the components required by the application
+COMP_LIST_eve = edma3_lld_drv edma3_lld_rm
+
+# XDC CFG File
+XDC_CFG_FILE_eve = rtsc_config/edma3_drv_bios6_tda3xx_st_sample.cfg
+
+CONFIG_BLD_XDC_CUSTOM = rtsc_config/custom_config.bld
+
+PLATFORM_XDC_CUSTOM = ti.platforms.evmDRA7XX:EVE_1
+
+# Common source files and CFLAGS across all platforms and cores
+SRCS_COMMON = common.c dma_misc_test.c dma_test.c qdma_test.c dma_chain_test.c \
+              dma_ping_pong_test.c main.c dma_link_test.c dma_poll_test.c      \
+              qdma_link_test.c eve_mmu.c
+
+CFLAGS_LOCAL_COMMON = -DBUILD_TDA3XX_EVE
+
+# Core/SoC/platform specific source files and CFLAGS
+# Example:
+#   SRCS_<core/SoC/platform-name> =
+#   CFLAGS_LOCAL_<core/SoC/platform-name> =
+
+# Include common make files
+include $(ROOTDIR)/makerules/common.mk
+
+# OBJs and libraries are built by using rule defined in rules_<target>.mk
+#     and need not be explicitly specified here
+
+# Nothing beyond this point