]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - tools/leds/Makefile
Merge tag 'device-properties-4.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-artful-kernel.git] / tools / leds / Makefile
1 # Makefile for LEDs tools
2
3 CC = $(CROSS_COMPILE)gcc
4 CFLAGS = -Wall -Wextra -g -I../../include/uapi
5
6 all: uledmon led_hw_brightness_mon
7 %: %.c
8 $(CC) $(CFLAGS) -o $@ $^
9
10 clean:
11 $(RM) uledmon led_hw_brightness_mon
12
13 .PHONY: all clean