We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bbfab1 commit 8e67bd5Copy full SHA for 8e67bd5
Makefile
@@ -1,7 +1,7 @@
1
# This Makefile also tricks Travis into not running 'go get' for our
2
# build. See http://docs.travis-ci.com/user/languages/go/
3
4
-OBJDIR ?= ./bin
+OBJDIR ?= $(shell pwd)/bin
5
DESTDIR ?= /usr/local/bin
6
ARCHIVEDIR ?= /tmp
7
@@ -11,7 +11,7 @@ MAINTAINER ?= "Community"
11
12
CMDS = $(shell find ./cmd -maxdepth 1 -mindepth 1 -type d | grep -v testdata)
13
CMD_BASENAMES = $(shell echo $(CMDS) | xargs -n1 basename)
14
-CMD_BINS = $(addprefix $(OBJDIR)/, $(CMD_BASENAMES) )
+CMD_BINS = $(addprefix bin/, $(CMD_BASENAMES) )
15
OBJECTS = $(CMD_BINS)
16
17
# Build environment variables (referencing core/util.go)
0 commit comments