Hello, i am working with Linux SDK5.0.3 and AM3517. If you go to the example-applications folder, for instance to the dhyrstone example (SDK_AM3517/example-applications/arm-benchmarks-1.3/armv7a/dhrystone and open the makefile of such project , i have the next doubt:
I am not able to find in which file are declared the next variables i write in bold: INCLUDES, CFLAGS, LIBS. Pls. could you help me?
# ----------------------------------------------------------------------------
# Compiler and Linker flags for Debug
# ----------------------------------------------------------------------------
OBJDIR_D := Debug
BINDIR_D := $(OBJDIR_D)
LIBS_D := $(LIBS)
OBJS_D := $(SRCS:%.c=$(OBJDIR_D)/%.o)
ALL_DEBUG := -g3 -gdwarf-2
# ----------------------------------------------------------------------------
# Compiler include directories
# ----------------------------------------------------------------------------
INCLUDES :=
# ----------------------------------------------------------------------------
# All compiler options to be passed to the command line
# ----------------------------------------------------------------------------
ALL_CFLAGS := $(INCLUDES) \
-march=armv7-a \
-mtune=cortex-a8 \
-c \
$(CFLAGS)
LDFLAGS := -march=armv7-a \
-mtune=cortex-a8, \
-Wl,--hash-style=gnu \
-Wl,-O1 \
Thanks in advance