From 4460a68aa299ad6b63ffbbbb23585b93fad9feee Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 7 Mar 2025 21:26:52 +0200 Subject: add pprof option and rename ioriotng to ior --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index fa91ca1..3b2743b 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ all: bpfbuild gobuild .PHONY: bpfbuild bpfbuild: make -C ./internal/c redo - cp -v ./internal/c/ioriotng.bpf.o . + cp -v ./internal/c/ior.bpf.o . gen: generated generate: generated @@ -22,12 +22,12 @@ generated: .PHONY: gobuild gobuild: - go build -tags netgo -ldflags '-w -extldflags "-static"' -o ioriotng ./cmd/ioriotng/main.go + go build -tags netgo -ldflags '-w -extldflags "-static"' -o ior ./cmd/ior/main.go .PHONY: clean clean: - find . -type f -name ioriotng -delete - if [ -e ioriotng.bpf.o ]; then rm ioriotng.bpf.o; fi + find . -type f -name ior -delete + if [ -e ior.bpf.o ]; then rm ior.bpf.o; fi make -C ./internal/c clean .PHONY: world -- cgit v1.2.3