Makefile 2.5 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
2

3
LIBDIR := ../../../lib
4
BPFDIR := $(LIBDIR)/bpf
5 6 7
APIDIR := ../../../include/uapi
GENDIR := ../../../../include/generated
GENHDR := $(GENDIR)/autoconf.h
8

9 10 11 12
ifneq ($(wildcard $(GENHDR)),)
  GENFLAGS := -DHAVE_GENHDR
endif

13
CFLAGS += -Wall -O2 -I$(APIDIR) -I$(LIBDIR) -I$(GENDIR) $(GENFLAGS) -I../../../include
14
LDLIBS += -lcap -lelf -lrt -lpthread
15

16 17 18 19 20 21 22 23
TEST_CUSTOM_PROGS = $(OUTPUT)/urandom_read
all: $(TEST_CUSTOM_PROGS)

$(TEST_CUSTOM_PROGS): urandom_read

urandom_read: urandom_read.c
	$(CC) -o $(TEST_CUSTOM_PROGS) -static $<

24
# Order correspond to 'make run_tests' order
25
TEST_GEN_PROGS = test_verifier test_tag test_maps test_lru_map test_lpm_map test_progs \
26
	test_align test_verifier_log test_dev_cgroup test_tcpbpf_user test_sock_addr
27

28
TEST_GEN_FILES = test_pkt_access.o test_xdp.o test_l4lb.o test_tcp_estats.o test_obj_id.o \
29
	test_pkt_md_access.o test_xdp_redirect.o test_xdp_meta.o sockmap_parse_prog.o     \
30
	sockmap_verdict_prog.o dev_cgroup.o sample_ret0.o test_tracepoint.o \
31
	test_l4lb_noinline.o test_xdp_noinline.o test_stacktrace_map.o \
32
	sample_map_ret0.o test_tcpbpf_kern.o test_stacktrace_build_id.o \
33
	sockmap_tcp_msg_prog.o connect4_prog.o connect6_prog.o
34

35 36 37 38 39
# Order correspond to 'make run_tests' order
TEST_PROGS := test_kmod.sh \
	test_libbpf.sh \
	test_xdp_redirect.sh \
	test_xdp_meta.sh \
40 41
	test_offload.py \
	test_sock_addr.sh
42

43 44 45
# Compile but not part of 'make run_tests'
TEST_GEN_PROGS_EXTENDED = test_libbpf_open

46 47
include ../lib.mk

48
BPFOBJ := $(OUTPUT)/libbpf.a
49 50

$(TEST_GEN_PROGS): $(BPFOBJ)
51

52 53
$(TEST_GEN_PROGS_EXTENDED): $(OUTPUT)/libbpf.a

54
$(OUTPUT)/test_dev_cgroup: cgroup_helpers.c
55
$(OUTPUT)/test_sock_addr: cgroup_helpers.c
56

57
.PHONY: force
58 59 60 61 62

# force a rebuild of BPFOBJ when its dependencies are updated
force:

$(BPFOBJ): force
63
	$(MAKE) -C $(BPFDIR) OUTPUT=$(OUTPUT)/
64 65

CLANG ?= clang
66 67
LLC   ?= llc

68
PROBE := $(shell $(LLC) -march=bpf -mcpu=probe -filetype=null /dev/null 2>&1)
69 70 71 72 73 74 75 76

# Let newer LLVM versions transparently probe the kernel for availability
# of full BPF instruction set.
ifeq ($(PROBE),)
  CPU ?= probe
else
  CPU ?= generic
endif
77

78 79 80 81
CLANG_FLAGS = -I. -I./include/uapi -I../../../include/uapi \
	      -Wno-compare-distinct-pointer-types

$(OUTPUT)/test_l4lb_noinline.o: CLANG_FLAGS += -fno-inline
82
$(OUTPUT)/test_xdp_noinline.o: CLANG_FLAGS += -fno-inline
83

84
$(OUTPUT)/%.o: %.c
85
	$(CLANG) $(CLANG_FLAGS) \
86 87
		 -O2 -target bpf -emit-llvm -c $< -o - |      \
	$(LLC) -march=bpf -mcpu=$(CPU) -filetype=obj -o $@
88 89

EXTRA_CLEAN := $(TEST_CUSTOM_PROGS)