From 956d2706631fd11f19c1a65b1a022867d092cce6 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 16 Jun 2019 09:56:52 -0700 Subject: [PATCH] makefile shortcuts Signed-off-by: Jeff Carr --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Makefile b/Makefile index 57d3ed8..f30b18d 100644 --- a/Makefile +++ b/Makefile @@ -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: