From 3afada2a9fb4bc6270b960f6d137d27cc33c9443 Mon Sep 17 00:00:00 2001 From: Michael Dvorkin Date: Fri, 8 Jan 2016 11:21:55 -0800 Subject: [PATCH] Update Makefile to build mop executable in ./bin --- .gitignore | 1 - Makefile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 70d414a..9127d08 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,6 @@ tmtags *.*~ # Builds and logs. -mop bin/mop* logs/* diff --git a/Makefile b/Makefile index a2247dc..62e8e53 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ run: go run ./cmd/mop/main.go build: - go build -x $(PACKAGE) + go build -x -o ./bin/mop $(PACKAGE) install: go install -x $(PACKAGE)