xref: /linux/tools/testing/selftests/drivers/net/Makefile (revision d603517771d8e08a2d8fc9e1f7682ce393d3973a)
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	so_txtime \
11# end of TEST_GEN_FILES
12
13TEST_PROGS := \
14	gro.py \
15	hds.py \
16	macsec.py \
17	napi_id.py \
18	napi_threaded.py \
19	netpoll_basic.py \
20	ping.py \
21	psp.py \
22	queues.py \
23	ring_reconfig.py \
24	shaper.py \
25	so_txtime.py \
26	stats.py \
27	xdp.py \
28# end of TEST_PROGS
29
30# YNL files, must be before "include ..lib.mk"
31YNL_GEN_FILES := psp_responder
32TEST_GEN_FILES += $(YNL_GEN_FILES)
33
34include ../../lib.mk
35
36# YNL build
37YNL_GENS := psp
38
39include ../../net/ynl.mk
40