]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - tools/leds/Makefile
Merge tag 'armsoc-arm64' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[mirror_ubuntu-artful-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