Skip to content

Commit c318614

Browse files
committed
refactor(make): better naming
1 parent 3e523ee commit c318614

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ install: build
1515
build: $(SOURCES)
1616
$(COMPILE_COMMAND)
1717

18-
build-all-platforms: $(SOURCES) clean
18+
build-all-binaries: $(SOURCES) clean
1919
# doesn't work on my machine and not in travis, see: https://github.com/golang/go/wiki/GoArm
2020
# GOOS=android GOARCH=arm $(COMPILE_COMMAND) && mv ./bin/tldr ./bin/tldr-android-arm
2121
# GOOS=darwin GOARCH=arm $(COMPILE_COMMAND) && mv ./bin/tldr ./bin/tldr-darwin-arm
@@ -48,7 +48,7 @@ build-all-platforms: $(SOURCES) clean
4848
GOOS=windows GOARCH=386 $(COMPILE_COMMAND) && mv ./bin/tldr ./bin/tldr-windows-386
4949
GOOS=windows GOARCH=amd64 $(COMPILE_COMMAND) && mv ./bin/tldr ./bin/tldr-windows-amd64
5050

51-
compress-all-binaries: $(BINARIES)
51+
compress-all-binaries: build-all-binaries
5252
for f in $(BINARIES); do \
5353
tar czf $$f.tar.gz $$f; \
5454
done

0 commit comments

Comments
 (0)