ebpf_prog/Makefile: removed useless LLVM_STRIP

`LLVM_STRIP` appears only once in Makefile:

```
$ grep LLVM Makefile
LLVM_STRIP ?= llvm-strip -g
```

Signed-off-by: Ariel Otilibili <otilibil@eurecom.fr>
This commit is contained in:
Ariel Otilibili 2024-09-13 19:24:04 +02:00
parent 791e28d764
commit 5428278ed9

View file

@ -7,7 +7,6 @@ KERNEL_DIR ?= /lib/modules/$(shell uname -r)/source
KERNEL_HEADERS ?= /usr/src/linux-headers-$(shell uname -r)/
CC = clang
LLC ?= llc
LLVM_STRIP ?= llvm-strip -g
ARCH ?= $(shell uname -m)
# as in /usr/src/linux-headers-*/arch/