https://github.com/raspberrypi/linux
Raw File
Tip revision: 315314059f92c13bc7d34b6aaff7527aca68457c authored by Dom Cobley on 08 March 2022, 11:59:39 UTC
Merge remote-tracking branch 'stable/linux-5.10.y' into oldstable
Tip revision: 3153140
Makefile
# 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
back to top