Makefile 1.6 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
2
LIBDIR := ../../../lib
3
BPFDIR := $(LIBDIR)/bpf
4 5 6
APIDIR := ../../../include/uapi
GENDIR := ../../../../include/generated
GENHDR := $(GENDIR)/autoconf.h
7

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

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

15
TEST_GEN_PROGS = test_verifier test_tag test_maps test_lru_map test_lpm_map test_progs \
16
	test_align test_verifier_log test_dev_cgroup
17

18
TEST_GEN_FILES = test_pkt_access.o test_xdp.o test_l4lb.o test_tcp_estats.o test_obj_id.o \
19
	test_pkt_md_access.o test_xdp_redirect.o test_xdp_meta.o sockmap_parse_prog.o     \
20 21
	sockmap_verdict_prog.o dev_cgroup.o sample_ret0.o test_tracepoint.o \
	test_l4lb_noinline.o
22

23 24
TEST_PROGS := test_kmod.sh test_xdp_redirect.sh test_xdp_meta.sh \
	test_offload.py
25

26 27
include ../lib.mk

28
BPFOBJ := $(OUTPUT)/libbpf.a $(OUTPUT)/cgroup_helpers.c
29 30

$(TEST_GEN_PROGS): $(BPFOBJ)
31

32
.PHONY: force
33 34 35 36 37

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

$(BPFOBJ): force
38
	$(MAKE) -C $(BPFDIR) OUTPUT=$(OUTPUT)/
39 40

CLANG ?= clang
41 42 43 44 45 46 47 48 49 50 51
LLC   ?= llc

PROBE := $(shell llc -march=bpf -mcpu=probe -filetype=null /dev/null 2>&1)

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

53 54 55 56 57
CLANG_FLAGS = -I. -I./include/uapi -I../../../include/uapi \
	      -Wno-compare-distinct-pointer-types

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

58
%.o: %.c
59
	$(CLANG) $(CLANG_FLAGS) \
60 61
		 -O2 -target bpf -emit-llvm -c $< -o - |      \
	$(LLC) -march=bpf -mcpu=$(CPU) -filetype=obj -o $@