mpls: Do not decrement alive counter for unregister events
[linux-2.6-block.git] / tools / testing / selftests / bpf / Makefile
CommitLineData
d498f871
MS
1LIBDIR := ../../../lib
2BPFOBJ := $(LIBDIR)/bpf/bpf.o
3
4CFLAGS += -Wall -O2 -lcap -I../../../include/uapi -I$(LIBDIR)
5aa5bd14 5
c4f3f22e 6TEST_GEN_PROGS = test_verifier test_tag test_maps test_lru_map test_lpm_map
5aa5bd14 7
88baa78d 8TEST_PROGS := test_kmod.sh
5aa5bd14 9
d498f871
MS
10.PHONY: all clean force
11
d498f871
MS
12# force a rebuild of BPFOBJ when its dependencies are updated
13force:
14
15$(BPFOBJ): force
16 $(MAKE) -C $(dir $(BPFOBJ))
17
18$(test_objs): $(BPFOBJ)
2ee89fb9 19
5aa5bd14 20include ../lib.mk