update .gitignore

nosocat
Jean-Louis Huynen 2019-01-17 09:16:13 +01:00
parent e5131c756e
commit dc26216e44
2 changed files with 10 additions and 2 deletions

10
.gitignore vendored
View File

@ -4,7 +4,6 @@
*.dll *.dll
*.so *.so
*.dylib *.dylib
d4-amd64
*.vscode *.vscode
# Test binary, build with `go test -c` # Test binary, build with `go test -c`
@ -12,3 +11,12 @@ d4-amd64
# Output of the go coverage tool, specifically when used with LiteIDE # Output of the go coverage tool, specifically when used with LiteIDE
*.out *.out
# Output binaries
d4-arm5l
d4-amd64l
# Output binaries from gox
d4-goclient_*
# Configuration files
/conf.sample/*

View File

@ -1,4 +1,4 @@
arm5l: d4-goclient.go arm5l: d4-goclient.go
env GOOS=linux GOARCH=arm GOARM=5 go build -o d4-arm5l d4-goclient.go env GOOS=linux GOARCH=arm GOARM=5 go build -o d4-arm5l d4-goclient.go
amd64l: d4-goclient.go amd64l: d4-goclient.go
env GOOS=linux GOARCH=amd64 go build -o d4-amd64 d4-goclient.go env GOOS=linux GOARCH=amd64 go build -o d4-amd64l d4-goclient.go