diff options
author | David Lechner <david@lechnology.com> | 2016-09-16 14:16:50 -0500 |
---|---|---|
committer | Jacek Anaszewski <j.anaszewski@samsung.com> | 2016-11-22 12:07:02 +0100 |
commit | fa7f32422ea1ac276b45b96a540ed5981caaa61f (patch) | |
tree | a11d1dede38a7a7bf9eb45a81b6d4ab31a953e5c /tools/leds/Makefile | |
parent | eb1ce7469940b4eb8a466d9ae4d032fb2c9969dc (diff) |
tools/leds: Add uledmon program for monitoring userspace LEDs
The uleds driver provides userspace LED devices. This tool is used to
create one of these devices and monitor the changes in brighness for
testing purposes.
Signed-off-by: David Lechner <david@lechnology.com>
Signed-off-by: Jacek Anaszewski <j.anaszewski@samsung.com>
Diffstat (limited to 'tools/leds/Makefile')
-rw-r--r-- | tools/leds/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/leds/Makefile b/tools/leds/Makefile new file mode 100644 index 000000000000..c03a79ebf9c8 --- /dev/null +++ b/tools/leds/Makefile @@ -0,0 +1,13 @@ +# Makefile for LEDs tools + +CC = $(CROSS_COMPILE)gcc +CFLAGS = -Wall -Wextra -g -I../../include/uapi + +all: uledmon +%: %.c + $(CC) $(CFLAGS) -o $@ $^ + +clean: + $(RM) uledmon + +.PHONY: all clean |