17 lines
255 B
Makefile
17 lines
255 B
Makefile
|
|
build:
|
|
@go build -o ./out/annalist.exe main.go
|
|
#run: build
|
|
# @./out/annalist.exe
|
|
|
|
#linux:
|
|
# @$Env:GOOS="linux"; $Env:GOARCH="arm"; $Env:GOARM=5
|
|
|
|
# .profile
|
|
# cgo_enabled 0
|
|
|
|
push:
|
|
git status
|
|
git add -A
|
|
git commit -m "Transfer."
|
|
git push origin master
|