mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
Add 32-bit version
This commit is contained in:
parent
45436a3762
commit
7cc1eccb83
7
Makefile
7
Makefile
@ -19,6 +19,11 @@ linuxarm:
|
||||
env GOOS=linux GOARCH=arm go build ${LDFLAGS} -o dist/cowyo_linux_arm
|
||||
#cd dist && upx --brute cowyo_linux_arm
|
||||
|
||||
.PHONY: linux32
|
||||
linux32:
|
||||
env GOOS=linux GOARCH=386 go build ${LDFLAGS} -o dist/cowyo_linux_32bit
|
||||
#cd dist && upx --brute cowyo_linux_amd64
|
||||
|
||||
.PHONY: linux64
|
||||
linux64:
|
||||
env GOOS=linux GOARCH=amd64 go build ${LDFLAGS} -o dist/cowyo_linux_amd64
|
||||
@ -35,6 +40,6 @@ osx:
|
||||
#cd dist && upx --brute cowyo_osx_amd64
|
||||
|
||||
.PHONY: release
|
||||
release: osx windows linux64 linuxarm
|
||||
release: osx windows linux64 linux32 linuxarm
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user