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 # Binaries for programs and plugins
gotest bin
*.exe *.exe
*.exe~ *.exe~
*.dll *.dll

View File

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