]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/leds/Makefile
Linux 4.14-rc6
[mirror_ubuntu-bionic-kernel.git] / tools / leds / Makefile
CommitLineData
fa7f3242
DL
1# Makefile for LEDs tools
2
3CC = $(CROSS_COMPILE)gcc
4CFLAGS = -Wall -Wextra -g -I../../include/uapi
5
ae347323 6all: uledmon led_hw_brightness_mon
fa7f3242
DL
7%: %.c
8 $(CC) $(CFLAGS) -o $@ $^
9
10clean:
ae347323 11 $(RM) uledmon led_hw_brightness_mon
fa7f3242
DL
12
13.PHONY: all clean