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: