summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-02-22 22:44:44 +0200
committerPaul Buetow <paul@buetow.org>2024-02-22 22:44:44 +0200
commitc1b4bee6c93265139974b1e5cf065d3f82a7154b (patch)
tree6bffa2fdcad38aebcfa0099cd8e684ba65dbde53 /Makefile
parent285eefb1f36e2298af30d8e3df63792204a5b85d (diff)
PID filter
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 76f2ee1..7037e78 100644
--- a/Makefile
+++ b/Makefile
@@ -5,9 +5,7 @@ export GOARCH = amd64
export CGO_CFLAGS = -I$(LIBBPFGO)/output -I$(LIBBPFGO)/selftest/common
export CGO_LDFLAGS = -lelf -lzstd $(LIBBPFGO)/output/libbpf.a
-all: build run
-
-build: bpfbuild gobuild
+all: bpfbuild gobuild
.PHONY: bpfbuild
bpfbuild:
@@ -27,7 +25,3 @@ clean:
find . -type f -name ioriotng -delete
if [ -e ioriotng.bpf.o ]; then rm ioriotng.bpf.o; fi
make -C ./internal/c clean
-
-.PHONY: run
-run:
- sudo ./ioriotng -uid $$(id -u)