aboutsummaryrefslogtreecommitdiff
path: root/internal/bench/Makefile
diff options
context:
space:
mode:
authorGravatar Runxi Yu2025-11-19 08:00:00 +0800
committerGravatar Runxi Yu2025-11-19 08:00:00 +0800
commite05d1757bc9c53f954c6bfb600bc8740f1f9fb83 (patch)
tree99e24f2078bd609a38b3c6bea2c02aa70fedb8e9 /internal/bench/Makefile
parentSIMD with AVX2 on supported AMD64 machines (diff)
signatureNo signature
Remove the broken compression benchmarking utility
Diffstat (limited to 'internal/bench/Makefile')
-rw-r--r--internal/bench/Makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/internal/bench/Makefile b/internal/bench/Makefile
deleted file mode 100644
index f2b3f316..00000000
--- a/internal/bench/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-.PHONY: all clean
-
-all: compress.elf decompress.elf
-
-clean:
- rm -f *.elf
-
-compress.elf: compress.c
- $(CC) $(CFLAGS) -o compress.elf compress.c -lz-ng
-
-decompress.elf: decompress.go
- go build -o decompress.elf decompress.go