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