aboutsummaryrefslogtreecommitdiffstats
path: root/tools/cgroup/Makefile
blob: ffca068e4a761ec02635b2383f46e4e876630bd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# SPDX-License-Identifier: GPL-2.0
# Makefile for cgroup tools

CFLAGS = -Wall -Wextra

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

clean:
	$(RM) cgroup_event_listener