xref: /linux/tools/testing/selftests/drivers/net/Makefile (revision dfecb0c5af3b07ebfa84be63a7a21bfc9e29a872)
1# SPDX-License-Identifier: GPL-2.0
2CFLAGS += $(KHDR_INCLUDES)
3
4TEST_INCLUDES := $(wildcard lib/py/*.py) \
5		 $(wildcard lib/sh/*.sh) \
6		 ../../net/lib.sh \
7
8TEST_GEN_FILES := \
9	napi_id_helper \
10# end of TEST_GEN_FILES
11
12TEST_PROGS := \
13	gro.py \
14	hds.py \
15	napi_id.py \
16	napi_threaded.py \
17	netpoll_basic.py \
18	ping.py \
19	psp.py \
20	queues.py \
21	ring_reconfig.py \
22	shaper.py \
23	stats.py \
24	xdp.py \
25# end of TEST_PROGS
26
27# YNL files, must be before "include ..lib.mk"
28YNL_GEN_FILES := psp_responder
29TEST_GEN_FILES += $(YNL_GEN_FILES)
30
31include ../../lib.mk
32
33# YNL build
34YNL_GENS := psp
35
36include ../../net/ynl.mk
37