aboutsummaryrefslogtreecommitdiffstats
path: root/tools/leds/Makefile
diff options
context:
space:
mode:
authorDavid Lechner <david@lechnology.com>2016-09-16 14:16:50 -0500
committerJacek Anaszewski <j.anaszewski@samsung.com>2016-11-22 12:07:02 +0100
commitfa7f32422ea1ac276b45b96a540ed5981caaa61f (patch)
treea11d1dede38a7a7bf9eb45a81b6d4ab31a953e5c /tools/leds/Makefile
parentleds: Use macro for max device node name size (diff)
downloadlinux-dev-fa7f32422ea1ac276b45b96a540ed5981caaa61f.tar.xz
linux-dev-fa7f32422ea1ac276b45b96a540ed5981caaa61f.zip
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/Makefile13
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