From 3d946499a287b3c9bbc6a68efa584514d2f8204e Mon Sep 17 00:00:00 2001 From: Kevin Schoon Date: Sun, 10 Oct 2021 11:32:10 -0400 Subject: [PATCH] build bin/pomo by default --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f90b2d6..b4e0ed3 100644 --- a/Makefile +++ b/Makefile @@ -12,9 +12,10 @@ LDFLAGS=\ pomo-build \ readme -default: - cd cmd/pomo && \ - go install -ldflags '${LDFLAGS}' +default: bin/pomo + +clean: + [[ -f bin/pomo ]] && rm bin/pomo || true bin/pomo: test cd cmd/pomo && \