diff --git a/Makefile b/Makefile index c1ed62af..c97086a5 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,19 @@ install: build: go build $(BENCH) -win32: - GOARCH=386 GOOS=windows go build $(BENCH) win64: GOARCH=amd64 GOOS=windows go build $(BENCH) + mv bench.exe bench_1.0_win64.exe +win32: + GOARCH=386 GOOS=windows go build $(BENCH) + mv bench.exe bench_1.0_win32.exe + +linux64: + GOARCH=amd64 GOOS=linux go build $(BENCH) + mv bench bench_1.0_linux64 +linux32: + GOARCH=386 GOOS=linux go build $(BENCH) + mv bench bench_1.0_linux32 +linux_arm: + GOARCH=arm GOOS=linux go build $(BENCH) + mv bench bench_1.0_linux_arm