diff options
Diffstat (limited to '')
-rw-r--r-- | samples/auxdisplay/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/samples/auxdisplay/Makefile b/samples/auxdisplay/Makefile new file mode 100644 index 000000000..0273bab27 --- /dev/null +++ b/samples/auxdisplay/Makefile @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: GPL-2.0 +CC := $(CROSS_COMPILE)gcc +CFLAGS := -I../../usr/include + +PROGS := cfag12864b-example + +all: $(PROGS) + +clean: + rm -fr $(PROGS) |