# Makefile for I2C Sample application

APP_NAME = evm6748_uart_sample

SRCDIR = src
INCDIR = src

# List all the external components/interfaces, whose interface header files 
#  need to be included for this component
INCLUDE_EXERNAL_INTERFACES = bios xdc edma bios_psp

# List all the components required by the application
COMP_LIST_c6xdsp = bios_psp_uart bios_psp_psc bios_psp_platform_evm6748

## yes/no
LNK_EDMA_LIB = yes

# XDC CFG File
XDC_CFG_FILE_c6xdsp = uartsample.cfg

# Common source files and CFLAGS across all platforms and cores
SRCS_COMMON = uartSample_io.c uartSample_main.c

CFLAGS_LOCAL_COMMON = -mi10 -dCHIP_C6748

# 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
