aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/net/Makefile
blob: fa8187ff15e6f254e7e4c0c48b157d195e3f2d94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Makefile for net selftests

CC = $(CROSS_COMPILE)gcc
CFLAGS = -Wall -O2 -g

CFLAGS += -I../../../../usr/include/

NET_PROGS = socket psock_fanout psock_tpacket

all: $(NET_PROGS)
%: %.c
	$(CC) $(CFLAGS) -o $@ $^

TEST_PROGS := run_netsocktests run_afpackettests test_bpf.sh

include ../lib.mk

clean:
	$(RM) $(NET_PROGS)