summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-01-17 04:55:29 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-01-17 06:04:59 +0900
commitae3180f91994cd6129dbb80144cda4b1abeb6ec0 (patch)
tree778636b2d765db20b9aa1a1323f5f183d7f01651 /src/Makefile
parent62acb9adc47e714a427f12cb2e2c6ebca0bd7f38 (diff)
downloadfzf-ae3180f91994cd6129dbb80144cda4b1abeb6ec0.tar.gz
Fix CTRL-Y key binding
With tmux-based test cases
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile
index 4610e586..eda04040 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -22,7 +22,7 @@ VERSION = $(shell fzf/$(BINARY64) --version)
RELEASE32 = fzf-$(VERSION)-$(GOOS)_386
RELEASE64 = fzf-$(VERSION)-$(GOOS)_amd64
-all: test release
+all: release
release: build
cd fzf && \
@@ -30,13 +30,13 @@ release: build
cp $(BINARY64) $(RELEASE64) && tar -czf $(RELEASE64).tgz $(RELEASE64) && \
rm $(RELEASE32) $(RELEASE64)
-build: fzf/$(BINARY32) fzf/$(BINARY64)
+build: test fzf/$(BINARY32) fzf/$(BINARY64)
test:
go get
go test -v ./...
-install: $(BINDIR)/fzf
+install: build $(BINDIR)/fzf
uninstall:
rm -f $(BINDIR)/fzf $(BINDIR)/$(BINARY64)