brintos

brintos / linux-shallow public Read only

0
0
Text · 356 B · ed5143b Raw
20 lines · plain
1BPF_TEST_NO_CFI_DIR := $(realpath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))2KDIR ?= $(abspath $(BPF_TEST_NO_CFI_DIR)/../../../../..)3 4ifeq ($(V),1)5Q =6else7Q = @8endif9 10MODULES = bpf_test_no_cfi.ko11 12obj-m += bpf_test_no_cfi.o13 14all:15	+$(Q)make -C $(KDIR) M=$(BPF_TEST_NO_CFI_DIR) modules16 17clean:18	+$(Q)make -C $(KDIR) M=$(BPF_TEST_NO_CFI_DIR) clean19 20