diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2018-12-13 15:17:30 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2018-12-13 15:17:30 +0900 |
| commit | 63c42b14f24c7b82515cf13d6372dd302f5d11a5 (patch) | |
| tree | cf40731a5b3f1739a0224a6ffa233b37238dcc5e /Makefile | |
| parent | 6f1eaa9b39769420e07c2947af22c4e481dea1d0 (diff) | |
| download | fzf-63c42b14f24c7b82515cf13d6372dd302f5d11a5.tar.gz | |
Remove trailing spaces in Makefile
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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 |
