mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 13:46:50 +07:00
12 lines
175 B
Makefile
12 lines
175 B
Makefile
|
# Makefile for cgroup tools
|
||
|
|
||
|
CC = $(CROSS_COMPILE)gcc
|
||
|
CFLAGS = -Wall -Wextra
|
||
|
|
||
|
all: cgroup_event_listener
|
||
|
%: %.c
|
||
|
$(CC) $(CFLAGS) -o $@ $^
|
||
|
|
||
|
clean:
|
||
|
$(RM) cgroup_event_listener
|