summaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/bpf/bpf_testmod/Makefile
blob: 15cb36c4483ac3b970d93d2e4467cd290917c361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
BPF_TESTMOD_DIR := $(realpath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
KDIR ?= $(abspath $(BPF_TESTMOD_DIR)/../../../../..)

ifeq ($(V),1)
Q =
else
Q = @
endif

MODULES = bpf_testmod.ko

obj-m += bpf_testmod.o
CFLAGS_bpf_testmod.o = -I$(src)

all:
	+$(Q)make -C $(KDIR) M=$(BPF_TESTMOD_DIR) modules

clean:
	+$(Q)make -C $(KDIR) M=$(BPF_TESTMOD_DIR) clean