mirror of
https://github.com/xdp-project/bpf-examples.git
synced 2024-05-06 15:54:53 +00:00
This adds an initial version of a NAT64 translator in BPF. It compiles and loads, but doesn't actually appear to work yet. Signed-off-by: Toke Høiland-Jørgensen <toke@redhat.com>
13 lines
231 B
Makefile
13 lines
231 B
Makefile
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
|
|
USER_TARGETS := nat64
|
|
BPF_TARGETS := nat64_kern
|
|
BPF_SKEL_OBJ := nat64_kern.o
|
|
|
|
#LDLIBS += -pthread
|
|
EXTRA_DEPS += nat64.h
|
|
|
|
LIB_DIR = ../lib
|
|
|
|
include $(LIB_DIR)/common.mk
|