xref: /linux/tools/testing/selftests/filesystems/open_tree_ns/Makefile (revision 1bce1a664ac25d37a327c433a01bc347f0a81bd6)
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