4a76d6f6da
Type: feature Change-Id: I85aa4ad6b68c1aa0e51938002dc691a4b11c545c Signed-off-by: Damjan Marion <damarion@cisco.com> Signed-off-by: Benoît Ganne <bganne@cisco.com>
18 lines
344 B
Makefile
18 lines
344 B
Makefile
CC?=clang
|
|
# where to find bpf includes?
|
|
BPF_ROOT?=/usr/include
|
|
#BPF_ROOT?=/opt/vpp/external/x86_64/include
|
|
|
|
CFLAGS:=-O3 -g -Wextra -Wall -target bpf
|
|
# Workaround for Ubuntu/Debian for asm/types.h
|
|
CFLAGS+= -I/usr/include/x86_64-linux-gnu
|
|
CFLAGS+= -I$(BPF_ROOT)
|
|
#CFLAGS+= -DDEBUG
|
|
|
|
all: af_xdp.bpf.o
|
|
|
|
clean:
|
|
$(RM) af_xdp.bpf.o
|
|
|
|
.PHONY: all clean
|