mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 14:14:01 +08:00
14 lines
217 B
Makefile
14 lines
217 B
Makefile
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
userprogs-always-y := sandboxer
|
||
|
|
||
|
userccflags += -I usr/include
|
||
|
|
||
|
.PHONY: all clean
|
||
|
|
||
|
all:
|
||
|
$(MAKE) -C ../.. samples/landlock/
|
||
|
|
||
|
clean:
|
||
|
$(MAKE) -C ../.. M=samples/landlock/ clean
|