update .gitignore

nosocat
Jean-Louis Huynen 4 years ago
parent e5131c756e
commit dc26216e44
  1. 10
      .gitignore
  2. 2
      Makefile

10
.gitignore vendored

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

@ -1,4 +1,4 @@
arm5l: d4-goclient.go
env GOOS=linux GOARCH=arm GOARM=5 go build -o d4-arm5l 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

Loading…
Cancel
Save