mirror of https://github.com/torvalds/linux.git
24 lines
506 B
Makefile
24 lines
506 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
CFLAGS += -Wall -Wl,--no-as-needed -O2 -g
|
|
CFLAGS += -I../../../../../usr/include/ $(KHDR_INCLUDES)
|
|
# Additional include paths needed by kselftest.h
|
|
CFLAGS += -I../../
|
|
|
|
TEST_FILES := \
|
|
../../../../net/ynl \
|
|
../../../../../Documentation/netlink/specs \
|
|
# end of TEST_FILES
|
|
|
|
TEST_GEN_FILES := \
|
|
$(patsubst %.c,%.o,$(wildcard *.bpf.c)) \
|
|
csum \
|
|
xdp_helper \
|
|
# end of TEST_GEN_FILES
|
|
|
|
TEST_INCLUDES := $(wildcard py/*.py sh/*.sh)
|
|
|
|
include ../../lib.mk
|
|
|
|
include ../bpf.mk
|