Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 58416c37 authored by Jiri Benc's avatar Jiri Benc Committed by Daniel Borkmann
Browse files

tools: bpf: call descend in Makefile



Use the descend macro to properly propagate $(subdir) to bpftool.

Signed-off-by: default avatarJiri Benc <jbenc@redhat.com>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
parent 6c071008
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -76,12 +76,12 @@ install: $(PROGS) bpftool_install
	$(INSTALL) $(OUTPUT)bpf_asm $(DESTDIR)$(prefix)/bin/bpf_asm

bpftool:
	$(MAKE) -C bpftool
	$(call descend,bpftool)

bpftool_install:
	$(MAKE) -C bpftool install
	$(call descend,bpftool,install)

bpftool_clean:
	$(MAKE) -C bpftool clean
	$(call descend,bpftool,clean)

.PHONY: bpftool FORCE