diff options
author | Jakub Kicinski <jakub.kicinski@netronome.com> | 2018-03-15 23:26:17 -0700 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2018-03-16 09:23:46 +0100 |
commit | cc5b3403f0248ca5f40539d33f0e127ccca25dd2 (patch) | |
tree | 7b74627b63076fdd676e37c5b5ec7b54db3bb6d6 /tools/bpf/Makefile | |
parent | 8050ea4653c21e14681d9e00390c6886556a2640 (diff) | |
download | linux-cc5b3403f0248ca5f40539d33f0e127ccca25dd2.tar.bz2 |
tools: bpf: remove feature detection output
bpf tools use feature detection for libbfd dependency, clean up
the output files on make clean.
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'tools/bpf/Makefile')
-rw-r--r-- | tools/bpf/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/bpf/Makefile b/tools/bpf/Makefile index acfaf4c8cc32..1ea545965ee3 100644 --- a/tools/bpf/Makefile +++ b/tools/bpf/Makefile @@ -81,6 +81,8 @@ clean: bpftool_clean $(call QUIET_CLEAN, bpf-progs) $(Q)rm -rf $(OUTPUT)*.o $(OUTPUT)bpf_jit_disasm $(OUTPUT)bpf_dbg \ $(OUTPUT)bpf_asm $(OUTPUT)bpf_exp.yacc.* $(OUTPUT)bpf_exp.lex.* + $(call QUIET_CLEAN, core-gen) + $(Q)rm -f $(OUTPUT)FEATURE-DUMP.bpf install: $(PROGS) bpftool_install $(call QUIET_INSTALL, bpf_jit_disasm) |