summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2018-12-13 15:17:30 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2018-12-13 15:17:30 +0900
commit63c42b14f24c7b82515cf13d6372dd302f5d11a5 (patch)
treecf40731a5b3f1739a0224a6ffa233b37238dcc5e /Makefile
parent6f1eaa9b39769420e07c2947af22c4e481dea1d0 (diff)
downloadfzf-63c42b14f24c7b82515cf13d6372dd302f5d11a5.tar.gz
Remove trailing spaces in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 4a35cb15..b5ab5299 100644
--- a/Makefile
+++ b/Makefile
@@ -94,26 +94,26 @@ install: bin/fzf
clean:
$(RM) -r target
-target/$(BINARY32): $(SOURCES)
+target/$(BINARY32): $(SOURCES)
GOARCH=386 $(GO) build $(BUILD_FLAGS) -o $@
-target/$(BINARY64): $(SOURCES)
+target/$(BINARY64): $(SOURCES)
GOARCH=amd64 $(GO) build $(BUILD_FLAGS) -o $@
# https://github.com/golang/go/wiki/GoArm
-target/$(BINARYARM5): $(SOURCES)
+target/$(BINARYARM5): $(SOURCES)
GOARCH=arm GOARM=5 $(GO) build $(BUILD_FLAGS) -o $@
-target/$(BINARYARM6): $(SOURCES)
+target/$(BINARYARM6): $(SOURCES)
GOARCH=arm GOARM=6 $(GO) build $(BUILD_FLAGS) -o $@
-target/$(BINARYARM7): $(SOURCES)
+target/$(BINARYARM7): $(SOURCES)
GOARCH=arm GOARM=7 $(GO) build $(BUILD_FLAGS) -o $@
-target/$(BINARYARM8): $(SOURCES)
+target/$(BINARYARM8): $(SOURCES)
GOARCH=arm64 $(GO) build $(BUILD_FLAGS) -o $@
-target/$(BINARYPPC64LE): $(SOURCES)
+target/$(BINARYPPC64LE): $(SOURCES)
GOARCH=ppc64le $(GO) build $(BUILD_FLAGS) -o $@
bin/fzf: target/$(BINARY) | bin