From: Kamalesh Babulal Date: Mon, 28 Mar 2022 06:11:57 +0000 (+0530) Subject: samples/c: add empty_cgroup_v2 to the makefile X-Git-Tag: v3.0~98 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec25ae85a662537d8bc74e34f347c187521a7c89;p=thirdparty%2Flibcgroup.git samples/c: add empty_cgroup_v2 to the makefile Add the empty_cgroup_v2.c to the makefile, to maintain it like other sample programs in the directory. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- diff --git a/samples/c/Makefile.am b/samples/c/Makefile.am index 92f0e341..89487045 100644 --- a/samples/c/Makefile.am +++ b/samples/c/Makefile.am @@ -5,7 +5,7 @@ LDADD = $(top_builddir)/src/.libs/libcgroup.la #noinst_PROGRAMS = setuid walk_test read_stats walk_task get_controller \ # get_mount_point proctest get_all_controller \ # get_variable_names test_named_hierarchy \ -# get_procs wrapper_test logger +# get_procs wrapper_test logger empty_cgroup_v2 setuid_SOURCES=setuid.c walk_test_SOURCES=walk_test.c @@ -20,3 +20,4 @@ test_named_hierarchy_SOURCES=test_named_hierarchy.c get_procs_SOURCES=get_procs.c wrapper_test_SOURCES=wrapper_test.c logger_SOURCES=logger.c +empty_cgroup_v2_SOURCES=empty_cgroup_v2.c