From b5c80d310527223b93e4133ac2f4c8c063c70a98 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Fri, 18 Dec 2020 17:13:13 +0100 Subject: xdp: T2666: switch to example code provided by xdp-tutorial --- src/ebpf/Makefile | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/ebpf/Makefile (limited to 'src/ebpf/Makefile') diff --git a/src/ebpf/Makefile b/src/ebpf/Makefile deleted file mode 100644 index 5b80c32d7..000000000 --- a/src/ebpf/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -#clang -target bpf -O2 -c xdp-drop-ebpf.c -o xdp-drop-ebpf.o - -src = $(wildcard *.c) -obj = $(src:.c=.o) -CLANG = clang -CFLAGS = -Wall -Wno-unused-value -Wno-pointer-sign -Wno-compare-distinct-pointer-types -Werror -O2 - -%.o: %.c - $(CLANG) -target bpf $(CFLAGS) -o $@ -c $< - -.PHONY: all -all: $(obj) - -.PHONY: clean -clean: - rm -f *.o -- cgit v1.2.3