mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-12-25 20:06:32 +01:00
Move the cgroup_event_listener.c tool from Documentation into the new tools/cgroup directory. This change involves wiring cgroup_event_listener.c into the tools/ make system so that is can be built with: $ make tools/cgroup Signed-off-by: Greg Thelen <gthelen@google.com> Signed-off-by: Tejun Heo <tj@kernel.org>
175 B
175 B
Makefile for cgroup tools
CC = $(CROSS_COMPILE)gcc CFLAGS = -Wall -Wextra
all: cgroup_event_listener %: %.c $(CC) $(CFLAGS) -o $@ $^
clean: $(RM) cgroup_event_listener