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
|
./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
|
default-config: config-delete
|
||||||
echo loading the test config
|
echo loading the test config
|
||||||
./cloud-control-panel --defaultconfig
|
./cloud-control-panel --defaultconfig
|
||||||
|
@ -79,6 +84,15 @@ build-darwin:
|
||||||
build-windows:
|
build-windows:
|
||||||
env GOOS=windows GOARCH=amd64 go build
|
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 branch devel
|
||||||
# git push --set-upstream origin devel
|
# git push --set-upstream origin devel
|
||||||
devel:
|
devel:
|
||||||
|
|
Loading…
Reference in New Issue