Input: wm97xx: add new AC97 bus support
[sfrench/cifs-2.6.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