Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « cgroup « tools - github.com/torvalds/linux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ffca068e4a761ec02635b2383f46e4e876630bd9 (plain)
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