diff options
author | Quentin Monnet <quentin.monnet@netronome.com> | 2019-08-30 13:00:39 +0200 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2019-08-31 00:38:16 +0200 |
commit | fbdb620b7c674928a5713dbad9b07252ff929d0a (patch) | |
tree | f8cddfe9cc7cd69705d711d4b6ffa01b2d9c87e8 /tools/bpf/bpftool/.gitignore | |
parent | tools: bpftool: improve and check builds for different make invocations (diff) | |
download | linux-fbdb620b7c674928a5713dbad9b07252ff929d0a.tar.xz linux-fbdb620b7c674928a5713dbad9b07252ff929d0a.zip |
tools: bpf: account for generated feature/ and libbpf/ directories
When building "tools/bpf" from the top of the Linux repository, the
build system passes a value for the $(OUTPUT) Makefile variable to
tools/bpf/Makefile and tools/bpf/bpftool/Makefile, which results in
generating "libbpf/" (for bpftool) and "feature/" (bpf and bpftool)
directories inside the tree.
This commit adds such directories to the relevant .gitignore files, and
edits the Makefiles to ensure they are removed on "make clean". The use
of "rm" is also made consistent throughout those Makefiles (relies on
the $(RM) variable, use "--" to prevent interpreting
$(OUTPUT)/$(DESTDIR) as options.
v2:
- New patch.
Signed-off-by: Quentin Monnet <quentin.monnet@netronome.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'tools/bpf/bpftool/.gitignore')
-rw-r--r-- | tools/bpf/bpftool/.gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/bpf/bpftool/.gitignore b/tools/bpf/bpftool/.gitignore index 8248b8dd89d4..b13926432b84 100644 --- a/tools/bpf/bpftool/.gitignore +++ b/tools/bpf/bpftool/.gitignore @@ -3,3 +3,5 @@ bpftool*.8 bpf-helpers.* FEATURE-DUMP.bpftool +feature +libbpf |