thermal: use %d to print S32 parameters
[linux/fpc-iii.git] / tools / testing / selftests / net / Makefile
blob0e5340742620bc332df4ad49737fac072738d338
1 # Makefile for net selftests
3 CFLAGS = -Wall -O2 -g
5 CFLAGS += -I../../../../usr/include/
7 NET_PROGS = socket psock_fanout psock_tpacket reuseport_bpf reuseport_bpf_cpu reuseport_dualstack
9 all: $(NET_PROGS)
10 %: %.c
11 $(CC) $(CFLAGS) -o $@ $^
13 TEST_PROGS := run_netsocktests run_afpackettests test_bpf.sh
14 TEST_FILES := $(NET_PROGS)
16 include ../lib.mk
18 clean:
19 $(RM) $(NET_PROGS)