forked from x/ContextOS
pro Makefile
This commit is contained in:
parent
e81cc507b5
commit
8c2e41aeb9
16
Makefile
16
Makefile
@ -15,7 +15,19 @@ install:
|
|||||||
build:
|
build:
|
||||||
go build $(BENCH)
|
go build $(BENCH)
|
||||||
|
|
||||||
win32:
|
|
||||||
GOARCH=386 GOOS=windows go build $(BENCH)
|
|
||||||
win64:
|
win64:
|
||||||
GOARCH=amd64 GOOS=windows go build $(BENCH)
|
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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user