xref: /linux/tools/testing/selftests/drivers/net/Makefile (revision 18a7e218cfcdca6666e1f7356533e4c988780b57)
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	hds.py \
14	napi_id.py \
15	napi_threaded.py \
16	netcons_basic.sh \
17	netcons_cmdline.sh \
18	netcons_fragmented_msg.sh \
19	netcons_overflow.sh \
20	netcons_sysdata.sh \
21	netpoll_basic.py \
22	ping.py \
23	psp.py \
24	queues.py \
25	shaper.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