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