mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
14 lines
188 B
Makefile
14 lines
188 B
Makefile
![]() |
# 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
|