aboutsummaryrefslogtreecommitdiffstats
path: root/samples/bpf/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'samples/bpf/Makefile')
-rw-r--r--samples/bpf/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/samples/bpf/Makefile b/samples/bpf/Makefile
index 0718d9ce4619..f46d3492d032 100644
--- a/samples/bpf/Makefile
+++ b/samples/bpf/Makefile
@@ -3,9 +3,11 @@ obj- := dummy.o
3 3
4# List of programs to build 4# List of programs to build
5hostprogs-y := test_verifier test_maps 5hostprogs-y := test_verifier test_maps
6hostprogs-y += sock_example
6 7
7test_verifier-objs := test_verifier.o libbpf.o 8test_verifier-objs := test_verifier.o libbpf.o
8test_maps-objs := test_maps.o libbpf.o 9test_maps-objs := test_maps.o libbpf.o
10sock_example-objs := sock_example.o libbpf.o
9 11
10# Tell kbuild to always build the programs 12# Tell kbuild to always build the programs
11always := $(hostprogs-y) 13always := $(hostprogs-y)