aboutsummaryrefslogtreecommitdiffstats
path: root/tools/leds/Makefile
blob: c03a79ebf9c8dbf3117be2b716711f1111845911 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Makefile for LEDs tools

CC = $(CROSS_COMPILE)gcc
CFLAGS = -Wall -Wextra -g -I../../include/uapi

all: uledmon
%: %.c
	$(CC) $(CFLAGS) -o $@ $^

clean:
	$(RM) uledmon

.PHONY: all clean