move bin to bin directory

This commit is contained in:
Mike Bloy 2019-08-25 09:53:34 -05:00
parent 5fa031c802
commit 10a5bd4cc4
2 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@ -1,5 +1,5 @@
# Binaries for programs and plugins
gotest
bin
*.exe
*.exe~
*.dll

View File

@ -8,10 +8,10 @@ default: all
all: test build
build:
go build -ldflags ${LDFLAGS}
go build -ldflags ${LDFLAGS} -o bin/${BIN_NAME}
test:
go test ./... -ldflags ${LDFLAGS}
clean:
go clean
rm -rf bin/${BIN_NAME}