xref: /openbmc/linux/samples/landlock/Makefile (revision f69e98a91a01fd7c5755dd710e94a17d6e9f583f)
1# SPDX-License-Identifier: BSD-3-Clause
2
3userprogs-always-y := sandboxer
4
5userccflags += -I usr/include
6
7.PHONY: all clean
8
9all:
10	$(MAKE) -C ../.. samples/landlock/
11
12clean:
13	$(MAKE) -C ../.. M=samples/landlock/ clean
14