Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma
[deliverable/linux.git] / tools / testing / selftests / net / Makefile
CommitLineData
a6f68034 1# Makefile for net selftests
77f65ebd 2
23a95442 3CFLAGS = -Wall -O2 -g
77f65ebd
WB
4
5CFLAGS += -I../../../../usr/include/
6
d6a61f80 7NET_PROGS = socket psock_fanout psock_tpacket reuseport_bpf reuseport_bpf_cpu reuseport_dualstack
77f65ebd 8
a6f68034 9all: $(NET_PROGS)
77f65ebd
WB
10%: %.c
11 $(CC) $(CFLAGS) -o $@ $^
12
5e29a910 13TEST_PROGS := run_netsocktests run_afpackettests test_bpf.sh
32dcfba6 14TEST_FILES := $(NET_PROGS)
5e29a910
ME
15
16include ../lib.mk
17
77f65ebd 18clean:
a6f68034 19 $(RM) $(NET_PROGS)
This page took 0.147152 seconds and 5 git commands to generate.