diff options
author | Shuah Khan <shuahkh@osg.samsung.com> | 2016-09-16 15:36:21 +0200 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2016-09-23 19:52:32 +0200 |
commit | 8fc07ebe63a40c312730da28e54dbb4fc6029ca3 (patch) | |
tree | 49a5b4e05471682b45760a8276033d102661ed64 /samples/auxdisplay/Makefile | |
parent | samples: move watchdog example code from Documentation (diff) | |
download | linux-8fc07ebe63a40c312730da28e54dbb4fc6029ca3.tar.xz linux-8fc07ebe63a40c312730da28e54dbb4fc6029ca3.zip |
samples: move auxdisplay example code from Documentation
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>
Diffstat (limited to 'samples/auxdisplay/Makefile')
-rw-r--r-- | samples/auxdisplay/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/samples/auxdisplay/Makefile b/samples/auxdisplay/Makefile new file mode 100644 index 000000000000..05e471feb6e5 --- /dev/null +++ b/samples/auxdisplay/Makefile @@ -0,0 +1,9 @@ +CC := $(CROSS_COMPILE)gcc +CFLAGS := -I../../usr/include + +PROGS := cfag12864b-example + +all: $(PROGS) + +clean: + rm -fr $(PROGS) |