mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
8fc07ebe63
Move auxdisplay examples to samples and remove it from Documentation Makefile. Create a new Makefile to build auxdisplay. It can be built from top level directory or from auxdisplay directory: Run make -C samples/auxdisplay or cd samples/auxdisplay; make Acked-by: Jonathan Corbet <corbet@lwn.net> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
9 lines
125 B
Makefile
9 lines
125 B
Makefile
CC := $(CROSS_COMPILE)gcc
|
|
CFLAGS := -I../../usr/include
|
|
|
|
PROGS := cfag12864b-example
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm -fr $(PROGS)
|