xref: /linux/tools/testing/selftests/filesystems/open_tree_ns/Makefile (revision 23b0f90ba871f096474e1c27c3d14f455189d2d9)
1# SPDX-License-Identifier: GPL-2.0
2TEST_GEN_PROGS := open_tree_ns_test
3
4CFLAGS := -Wall -Werror -g $(KHDR_INCLUDES)
5LDLIBS := -lcap
6
7include ../../lib.mk
8
9$(OUTPUT)/open_tree_ns_test: open_tree_ns_test.c ../utils.c
10	$(CC) $(CFLAGS) -o $@ $^ $(LDLIBS)
11