efivarfs: Limit the rate for non-root to read files
[sfrench/cifs-2.6.git] / tools / leds / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 # Makefile for LEDs tools
3
4 CC = $(CROSS_COMPILE)gcc
5 CFLAGS = -Wall -Wextra -g -I../../include/uapi
6
7 all: uledmon led_hw_brightness_mon
8 %: %.c
9         $(CC) $(CFLAGS) -o $@ $^
10
11 clean:
12         $(RM) uledmon led_hw_brightness_mon
13
14 .PHONY: all clean