makefile shortcuts

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2019-06-16 09:56:52 -07:00
parent 9dc75044d7
commit 956d270663
1 changed files with 14 additions and 0 deletions

View File

@ -17,6 +17,11 @@ run:
build:
./build/build
build-all:
GOOS=linux GOARCH=386 go build -o bin/linux.x32.bin
GOOS=freebsd GOARCH=386 go build -o bin/freebsd.x32.bin
GOOS=darwin GOARCH=386 go build -o bin/darwin.x32.bin
default-config: config-delete
echo loading the test config
./cloud-control-panel --defaultconfig
@ -79,6 +84,15 @@ build-darwin:
build-windows:
env GOOS=windows GOARCH=amd64 go build
go-env:
go env
git-config:
git config --list
git-remote:
git remote -v
# git branch devel
# git push --set-upstream origin devel
devel: