From d44be126844a3d2c96c57662779240324baa3264 Mon Sep 17 00:00:00 2001 From: Caleb Bassi Date: Mon, 22 Oct 2018 20:26:26 -0700 Subject: [PATCH] Change 'make default' to 'make all' --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9a31df0..a1af5f4 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION=$(shell awk '/([0-9]{1}.?){3}/ {print $$4;}' main.go) -.PHONY: default -default: dist/gotop.rpm dist/gotop.deb +.PHONY: all +all: dist/gotop.rpm dist/gotop.deb dist/gotop: @GOOS=linux GOARCH=amd64 go build -o $@