mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07: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
|