From dc26216e443a9fe3b0053a6f5c9dcba1197736e9 Mon Sep 17 00:00:00 2001 From: Jean-Louis Huynen Date: Thu, 17 Jan 2019 09:16:13 +0100 Subject: [PATCH] update .gitignore --- .gitignore | 10 +++++++++- Makefile | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3ca9f29..9b5e95c 100644 --- a/.gitignore +++ b/.gitignore @@ -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/* diff --git a/Makefile b/Makefile index 6e5cdd8..15b3986 100644 --- a/Makefile +++ b/Makefile @@ -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