License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6-block.git] / tools / testing / selftests / bpf / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
d498f871 2LIBDIR := ../../../lib
e8f1f34a 3BPFDIR := $(LIBDIR)/bpf
02ea80b1
DB
4APIDIR := ../../../include/uapi
5GENDIR := ../../../../include/generated
6GENHDR := $(GENDIR)/autoconf.h
d498f871 7
02ea80b1
DB
8ifneq ($(wildcard $(GENHDR)),)
9 GENFLAGS := -DHAVE_GENHDR
10endif
11
6f14f443 12CFLAGS += -Wall -O2 -I$(APIDIR) -I$(LIBDIR) -I$(GENDIR) $(GENFLAGS) -I../../../include
6882804c 13LDLIBS += -lcap -lelf
5aa5bd14 14
18b3ad90
DM
15TEST_GEN_PROGS = test_verifier test_tag test_maps test_lru_map test_lpm_map test_progs \
16 test_align
6882804c 17
18f3d6be 18TEST_GEN_FILES = test_pkt_access.o test_xdp.o test_l4lb.o test_tcp_estats.o test_obj_id.o \
6f6d33f3 19 test_pkt_md_access.o test_xdp_redirect.o sockmap_parse_prog.o sockmap_verdict_prog.o
5aa5bd14 20
996139e8 21TEST_PROGS := test_kmod.sh test_xdp_redirect.sh
5aa5bd14 22
e8f1f34a
ZSL
23include ../lib.mk
24
6882804c 25BPFOBJ := $(OUTPUT)/libbpf.a
e8f1f34a
ZSL
26
27$(TEST_GEN_PROGS): $(BPFOBJ)
1da8ac7c 28
e8f1f34a 29.PHONY: force
d498f871 30
d498f871
MS
31# force a rebuild of BPFOBJ when its dependencies are updated
32force:
33
34$(BPFOBJ): force
e8f1f34a 35 $(MAKE) -C $(BPFDIR) OUTPUT=$(OUTPUT)/
6882804c
AS
36
37CLANG ?= clang
38
39%.o: %.c
0a5539f6 40 $(CLANG) -I. -I./include/uapi -I../../../include/uapi \
1c2dd16a 41 -Wno-compare-distinct-pointer-types \
6882804c 42 -O2 -target bpf -c $< -o $@