From 10a5bd4cc49a12ee693639158bd05afca8bebbb8 Mon Sep 17 00:00:00 2001 From: Mike Bloy Date: Sun, 25 Aug 2019 09:53:34 -0500 Subject: [PATCH] move bin to bin directory --- .gitignore | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f462b89..c38d25e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ # Binaries for programs and plugins -gotest +bin *.exe *.exe~ *.dll diff --git a/Makefile b/Makefile index d47d2a4..dc94c42 100644 --- a/Makefile +++ b/Makefile @@ -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}