xref: /linux-6.15/tools/testing/selftests/net/Makefile (revision 6faeeea4)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Makefile for net selftests
2
3CC = $(CROSS_COMPILE)gcc
4CFLAGS = -Wall -O2 -g
5
6CFLAGS += -I../../../../usr/include/
7
8NET_PROGS = socket psock_fanout psock_tpacket
9
10all: $(NET_PROGS)
11%: %.c
12	$(CC) $(CFLAGS) -o $@ $^
13
14TEST_PROGS := run_netsocktests run_afpackettests test_bpf.sh
15TEST_FILES := $(NET_PROGS)
16
17include ../lib.mk
18
19clean:
20	$(RM) $(NET_PROGS)
21

served by {OpenGrok

Last Index Update: Fri May 15 20:09:11 GMT 2026