twx-linux-tools/testing/lcdtest/app/Makefile
Heinrich Toews b3e52c6b4a testing: add lcdtest
Signed-off-by: Heinrich Toews <ht@twx-software.de>
2024-10-24 17:57:51 +02:00

19 lines
437 B
Makefile

# Makefile for the LCD test user space program.
all : apps
clean : clean_apps
# Edit the line below to modify a set of user-space programs
# you need to build
APPS = lcdtest
apps : $(APPS)
# These are flags/tools used to build user-space programs
CFLAGS := -Os -mcpu=cortex-a7 -mthumb
LDFLAGS := -mcpu=cortex-a7 -mthumb
CC = $(CROSS_COMPILE_APPS)gcc
# Clean-up after user-space programs
clean_apps :
-rm -f $(APPS) *.gdb *.o