]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blob - tools/leds/Makefile
Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ac97-mfd', 'asoc/topic...
[mirror_ubuntu-focal-kernel.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