1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
cowyo/Makefile
Zack Scholl ef0414a548 Version bump
Former-commit-id: 9e36c6e26026b6da693e9c63665a359bd8f81132 [formerly 90d2930802e405e495c9d4f115fc96607240fa8d] [formerly 384133006e5622b83245917ca698c6678728be97 [formerly 59036904d8]]
Former-commit-id: 73ead65f17e5bc8e72002d3db704f31e66d4bf37 [formerly 123a60c023445bb54818026f4ea8bd8683c4846a]
Former-commit-id: 8637b59aaedf6f665c581a630f8e076c2e38b735
2017-03-23 07:55:36 -06:00

24 lines
702 B
Makefile

VERSION=2.0.1
LDFLAGS=-ldflags "-s -w -X main.version=${VERSION}"
.PHONY: build
build:
go-bindata static/... templates/...
go build
.PHONY: release
release:
rm -rf dist/
mkdir dist/
go-bindata static/... templates/...
env GOOS=linux GOARCH=arm go build ${LDFLAGS} -o dist/cowyo_linux_arm
cd dist && upx --brute cowyo_linux_arm
env GOOS=linux GOARCH=amd64 go build ${LDFLAGS} -o dist/cowyo_linux_amd64
cd dist && upx --brute cowyo_linux_amd64
env GOOS=windows GOARCH=amd64 go build ${LDFLAGS} -o dist/cowyo_windows_amd64.exe
cd dist && upx --brute cowyo_windows_amd64.exe
env GOOS=darwin GOARCH=amd64 go build ${LDFLAGS} -o dist/cowyo_osx_amd64
cd dist && upx --brute cowyo_osx_amd64