perf test shell: Replace '|&' with '2>&1 |' to work with more shells
[linux-2.6-microblaze.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