Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0
2
3CFLAGS += -Wall -Wl,--no-as-needed -O2 -g
4CFLAGS += -I../../../../../usr/include/ $(KHDR_INCLUDES)
5# Additional include paths needed by kselftest.h
6CFLAGS += -I../../
7
8TEST_FILES := \
9 ../../../../net/ynl \
10 ../../../../../Documentation/netlink/specs \
11 ksft_setup_loopback.sh \
12# end of TEST_FILES
13
14TEST_GEN_FILES := \
15 $(patsubst %.c,%.o,$(wildcard *.bpf.c)) \
16 csum \
17 xdp_helper \
18# end of TEST_GEN_FILES
19
20TEST_INCLUDES := $(wildcard py/*.py sh/*.sh)
21
22include ../../lib.mk
23
24include ../bpf.mk