mirror of https://gitee.com/openkylin/linux.git
Merge branch 'bpf-tools-makefile-improvements'
Jiri Benc says: ==================== Currently, 'make bpf' in the tools/ directory does not provide the standard quiet output except for bpftool (which is however listed with a wrong directory). Worse, it does not respect the build output directory. The 'make bpf_install' does not work as one would expect, either. It installs unconditionally to /usr/bin without respecting DESTDIR and prefix. This patchset improves that behavior. ==================== Reviewed-by: Jakub Kicinski <jakub.kicinski@netronome.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
This commit is contained in:
commit
75a141af68
|
@ -1,19 +1,28 @@
|
|||
# SPDX-License-Identifier: GPL-2.0
|
||||
prefix = /usr
|
||||
include ../scripts/Makefile.include
|
||||
|
||||
prefix ?= /usr/local
|
||||
|
||||
CC = gcc
|
||||
LEX = flex
|
||||
YACC = bison
|
||||
MAKE = make
|
||||
INSTALL ?= install
|
||||
|
||||
CFLAGS += -Wall -O2
|
||||
CFLAGS += -D__EXPORTED_HEADERS__ -I../../include/uapi -I../../include
|
||||
CFLAGS += -D__EXPORTED_HEADERS__ -I$(srctree)/include/uapi -I$(srctree)/include
|
||||
|
||||
ifeq ($(srctree),)
|
||||
srctree := $(patsubst %/,%,$(dir $(CURDIR)))
|
||||
srctree := $(patsubst %/,%,$(dir $(srctree)))
|
||||
endif
|
||||
|
||||
ifeq ($(V),1)
|
||||
Q =
|
||||
else
|
||||
Q = @
|
||||
endif
|
||||
|
||||
FEATURE_USER = .bpf
|
||||
FEATURE_TESTS = libbfd disassembler-four-args
|
||||
FEATURE_DISPLAY = libbfd disassembler-four-args
|
||||
|
@ -38,40 +47,57 @@ ifeq ($(feature-disassembler-four-args), 1)
|
|||
CFLAGS += -DDISASM_FOUR_ARGS_SIGNATURE
|
||||
endif
|
||||
|
||||
%.yacc.c: %.y
|
||||
$(YACC) -o $@ -d $<
|
||||
$(OUTPUT)%.yacc.c: $(srctree)/tools/bpf/%.y
|
||||
$(QUIET_BISON)$(YACC) -o $@ -d $<
|
||||
|
||||
%.lex.c: %.l
|
||||
$(LEX) -o $@ $<
|
||||
$(OUTPUT)%.lex.c: $(srctree)/tools/bpf/%.l
|
||||
$(QUIET_FLEX)$(LEX) -o $@ $<
|
||||
|
||||
all: bpf_jit_disasm bpf_dbg bpf_asm bpftool
|
||||
$(OUTPUT)%.o: $(srctree)/tools/bpf/%.c
|
||||
$(QUIET_CC)$(COMPILE.c) -o $@ $<
|
||||
|
||||
bpf_jit_disasm : CFLAGS += -DPACKAGE='bpf_jit_disasm'
|
||||
bpf_jit_disasm : LDLIBS = -lopcodes -lbfd -ldl
|
||||
bpf_jit_disasm : bpf_jit_disasm.o
|
||||
$(OUTPUT)%.yacc.o: $(OUTPUT)%.yacc.c
|
||||
$(QUIET_CC)$(COMPILE.c) -o $@ $<
|
||||
$(OUTPUT)%.lex.o: $(OUTPUT)%.lex.c
|
||||
$(QUIET_CC)$(COMPILE.c) -o $@ $<
|
||||
|
||||
bpf_dbg : LDLIBS = -lreadline
|
||||
bpf_dbg : bpf_dbg.o
|
||||
PROGS = $(OUTPUT)bpf_jit_disasm $(OUTPUT)bpf_dbg $(OUTPUT)bpf_asm
|
||||
|
||||
bpf_asm : LDLIBS =
|
||||
bpf_asm : bpf_asm.o bpf_exp.yacc.o bpf_exp.lex.o
|
||||
bpf_exp.lex.o : bpf_exp.yacc.c
|
||||
all: $(PROGS) bpftool
|
||||
|
||||
$(OUTPUT)bpf_jit_disasm: CFLAGS += -DPACKAGE='bpf_jit_disasm'
|
||||
$(OUTPUT)bpf_jit_disasm: $(OUTPUT)bpf_jit_disasm.o
|
||||
$(QUIET_LINK)$(CC) $(CFLAGS) -o $@ $^ -lopcodes -lbfd -ldl
|
||||
|
||||
$(OUTPUT)bpf_dbg: $(OUTPUT)bpf_dbg.o
|
||||
$(QUIET_LINK)$(CC) $(CFLAGS) -o $@ $^ -lreadline
|
||||
|
||||
$(OUTPUT)bpf_asm: $(OUTPUT)bpf_asm.o $(OUTPUT)bpf_exp.yacc.o $(OUTPUT)bpf_exp.lex.o
|
||||
$(QUIET_LINK)$(CC) $(CFLAGS) -o $@ $^
|
||||
|
||||
$(OUTPUT)bpf_exp.lex.c: $(OUTPUT)bpf_exp.yacc.c
|
||||
|
||||
clean: bpftool_clean
|
||||
rm -rf *.o bpf_jit_disasm bpf_dbg bpf_asm bpf_exp.yacc.* bpf_exp.lex.*
|
||||
$(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.*
|
||||
|
||||
install: bpftool_install
|
||||
install bpf_jit_disasm $(prefix)/bin/bpf_jit_disasm
|
||||
install bpf_dbg $(prefix)/bin/bpf_dbg
|
||||
install bpf_asm $(prefix)/bin/bpf_asm
|
||||
install: $(PROGS) bpftool_install
|
||||
$(call QUIET_INSTALL, bpf_jit_disasm)
|
||||
$(Q)$(INSTALL) -m 0755 -d $(DESTDIR)$(prefix)/bin
|
||||
$(Q)$(INSTALL) $(OUTPUT)bpf_jit_disasm $(DESTDIR)$(prefix)/bin/bpf_jit_disasm
|
||||
$(call QUIET_INSTALL, bpf_dbg)
|
||||
$(Q)$(INSTALL) $(OUTPUT)bpf_dbg $(DESTDIR)$(prefix)/bin/bpf_dbg
|
||||
$(call QUIET_INSTALL, bpf_asm)
|
||||
$(Q)$(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
|
||||
|
|
|
@ -38,7 +38,7 @@ bash_compdir ?= /usr/share/bash-completion/completions
|
|||
CC = gcc
|
||||
|
||||
CFLAGS += -O2
|
||||
CFLAGS += -W -Wall -Wextra -Wno-unused-parameter -Wshadow
|
||||
CFLAGS += -W -Wall -Wextra -Wno-unused-parameter -Wshadow -Wno-missing-field-initializers
|
||||
CFLAGS += -DPACKAGE='"bpftool"' -D__EXPORTED_HEADERS__ -I$(srctree)/tools/include/uapi -I$(srctree)/tools/include -I$(srctree)/tools/lib/bpf -I$(srctree)/kernel/bpf/
|
||||
CFLAGS += -DBPFTOOL_VERSION='"$(BPFTOOL_VERSION)"'
|
||||
LIBS = -lelf -lbfd -lopcodes $(LIBBPF)
|
||||
|
|
Loading…
Reference in New Issue