Files

123 lines
3.3 KiB
Makefile
Raw Permalink Normal View History

# SPDX-License-Identifier: GPL-2.0
include ../scripts/Makefile.include
2018-03-08 23:00:37 +01:00
prefix ?= /usr/local
2013-12-11 23:43:44 +01:00
LEX = flex
YACC = bison
2017-10-04 20:10:04 -07:00
MAKE = make
2018-03-08 23:00:37 +01:00
INSTALL ?= install
CFLAGS += -Wall -O2
CFLAGS += -D__EXPORTED_HEADERS__ -I$(srctree)/tools/include/uapi \
-I$(srctree)/tools/include
# This will work when bpf is built in tools env. where srctree
# isn't set and when invoked from selftests build, where srctree
# is set to ".". building_out_of_srctree is undefined for in srctree
# builds
ifeq ($(srctree),)
update_srctree := 1
endif
ifndef building_out_of_srctree
update_srctree := 1
endif
ifeq ($(update_srctree),1)
srctree := $(patsubst %/,%,$(dir $(CURDIR)))
srctree := $(patsubst %/,%,$(dir $(srctree)))
endif
FEATURE_USER = .bpf
FEATURE_TESTS = libbfd disassembler-four-args disassembler-init-styled
FEATURE_DISPLAY = libbfd
check_feat := 1
2025-11-26 18:38:11 +09:00
NON_CHECK_FEAT_TARGETS := clean bpftool_clean resolve_btfids_clean
ifdef MAKECMDGOALS
ifeq ($(filter-out $(NON_CHECK_FEAT_TARGETS),$(MAKECMDGOALS)),)
check_feat := 0
endif
endif
ifeq ($(check_feat),1)
ifeq ($(FEATURES_DUMP),)
include $(srctree)/tools/build/Makefile.feature
else
include $(FEATURES_DUMP)
endif
endif
ifeq ($(feature-disassembler-four-args), 1)
CFLAGS += -DDISASM_FOUR_ARGS_SIGNATURE
endif
ifeq ($(feature-disassembler-init-styled), 1)
CFLAGS += -DDISASM_INIT_STYLED
endif
$(OUTPUT)%.yacc.c: $(srctree)/tools/bpf/%.y
2018-03-08 23:00:40 +01:00
$(QUIET_BISON)$(YACC) -o $@ -d $<
2013-12-11 23:43:44 +01:00
$(OUTPUT)%.lex.c: $(srctree)/tools/bpf/%.l
2018-03-08 23:00:40 +01:00
$(QUIET_FLEX)$(LEX) -o $@ $<
2013-12-11 23:43:44 +01:00
$(OUTPUT)%.o: $(srctree)/tools/bpf/%.c
2020-06-02 19:56:48 +02:00
$(QUIET_CC)$(CC) $(CFLAGS) -c -o $@ $<
2018-03-08 23:00:40 +01:00
$(OUTPUT)%.yacc.o: $(OUTPUT)%.yacc.c
2020-06-02 19:56:48 +02:00
$(QUIET_CC)$(CC) $(CFLAGS) -c -o $@ $<
2018-03-08 23:00:40 +01:00
$(OUTPUT)%.lex.o: $(OUTPUT)%.lex.c
2020-06-02 19:56:48 +02:00
$(QUIET_CC)$(CC) $(CFLAGS) -c -o $@ $<
2018-03-08 23:00:38 +01:00
PROGS = $(OUTPUT)bpf_jit_disasm $(OUTPUT)bpf_dbg $(OUTPUT)bpf_asm
2025-11-26 18:38:11 +09:00
all: $(PROGS) bpftool
$(OUTPUT)bpf_jit_disasm: CFLAGS += -DPACKAGE='bpf_jit_disasm'
$(OUTPUT)bpf_jit_disasm: $(OUTPUT)bpf_jit_disasm.o
2018-03-08 23:00:40 +01:00
$(QUIET_LINK)$(CC) $(CFLAGS) -o $@ $^ -lopcodes -lbfd -ldl
2013-12-11 23:43:43 +01:00
$(OUTPUT)bpf_dbg: $(OUTPUT)bpf_dbg.o
2018-03-08 23:00:40 +01:00
$(QUIET_LINK)$(CC) $(CFLAGS) -o $@ $^ -lreadline
$(OUTPUT)bpf_asm: $(OUTPUT)bpf_asm.o $(OUTPUT)bpf_exp.yacc.o $(OUTPUT)bpf_exp.lex.o
2018-03-08 23:00:40 +01:00
$(QUIET_LINK)$(CC) $(CFLAGS) -o $@ $^
$(OUTPUT)bpf_exp.lex.c: $(OUTPUT)bpf_exp.yacc.c
$(OUTPUT)bpf_exp.yacc.o: $(OUTPUT)bpf_exp.yacc.c
$(OUTPUT)bpf_exp.lex.o: $(OUTPUT)bpf_exp.lex.c
2013-12-11 23:43:44 +01:00
2025-11-26 18:38:11 +09:00
clean: bpftool_clean resolve_btfids_clean
2018-03-08 23:00:40 +01:00
$(call QUIET_CLEAN, bpf-progs)
$(Q)$(RM) -r -- $(OUTPUT)*.o $(OUTPUT)bpf_jit_disasm $(OUTPUT)bpf_dbg \
$(OUTPUT)bpf_asm $(OUTPUT)bpf_exp.yacc.* $(OUTPUT)bpf_exp.lex.*
2018-03-15 23:26:17 -07:00
$(call QUIET_CLEAN, core-gen)
$(Q)$(RM) -- $(OUTPUT)FEATURE-DUMP.bpf
$(Q)$(RM) -r -- $(OUTPUT)feature
install: $(PROGS) bpftool_install
2018-03-08 23:00:40 +01:00
$(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
2017-10-04 20:10:04 -07:00
bpftool:
2018-03-08 23:00:39 +01:00
$(call descend,bpftool)
2017-10-04 20:10:04 -07:00
bpftool_install:
2018-03-08 23:00:39 +01:00
$(call descend,bpftool,install)
2017-10-04 20:10:04 -07:00
bpftool_clean:
2018-03-08 23:00:39 +01:00
$(call descend,bpftool,clean)
2017-10-04 20:10:04 -07:00
resolve_btfids:
$(call descend,resolve_btfids)
resolve_btfids_clean:
$(call descend,resolve_btfids,clean)
2020-01-12 23:31:42 -08:00
.PHONY: all install clean bpftool bpftool_install bpftool_clean \
resolve_btfids resolve_btfids_clean