summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-12-18 17:13:13 +0100
committerChristian Poessinger <christian@poessinger.com>2020-12-19 21:56:19 +0100
commitb5c80d310527223b93e4133ac2f4c8c063c70a98 (patch)
tree48ae9e2752b4b94c07f767a019c99a8c2460c014 /Makefile
parent22308b05dfbcd8da0230bbd8ba3bbc2a55da7786 (diff)
downloadvyos-1x-b5c80d310527223b93e4133ac2f4c8c063c70a98.tar.gz
vyos-1x-b5c80d310527223b93e4133ac2f4c8c063c70a98.zip
xdp: T2666: switch to example code provided by xdp-tutorial
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 8155b231e..cabe31b9b 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ OP_TMPL_DIR := templates-op
BUILD_DIR := build
DATA_DIR := data
SHIM_DIR := src/shim
-EBPF_DIR := src/ebpf
+XDP_DIR := src/xdp
CC := gcc
LIBS := -lzmq
CFLAGS :=
@@ -97,12 +97,12 @@ component_versions: $(BUILD_DIR) $(obj)
vyshim:
$(MAKE) -C $(SHIM_DIR)
-.PHONY: vyebpf
-vyebpf:
- $(MAKE) -C $(EBPF_DIR)
+.PHONY: vyxdp
+vyxdp:
+ $(MAKE) -C $(XDP_DIR)
.PHONY: all
-all: clean interface_definitions op_mode_definitions component_versions vyshim vyebpf
+all: clean interface_definitions op_mode_definitions component_versions vyshim vyxdp
.PHONY: clean
clean:
@@ -110,7 +110,7 @@ clean:
rm -rf $(TMPL_DIR)
rm -rf $(OP_TMPL_DIR)
$(MAKE) -C $(SHIM_DIR) clean
- $(MAKE) -C $(EBPF_DIR) clean
+ $(MAKE) -C $(XDP_DIR) clean
.PHONY: test
test: