makefile shortcuts
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
9dc75044d7
commit
956d270663
14
Makefile
14
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:
|
||||
|
|
Loading…
Reference in New Issue