brintos

brintos / linux-shallow public Read only

0
0
Text · 242 B · 7b6bed1 Raw
14 lines · plain
1# SPDX-License-Identifier: GPL-2.02# Makefile for LEDs tools3 4CFLAGS = -Wall -Wextra -g -I../../include/uapi5 6all: uledmon led_hw_brightness_mon7%: %.c8	$(CC) $(CFLAGS) -o $@ $^9 10clean:11	$(RM) uledmon led_hw_brightness_mon12 13.PHONY: all clean14