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