Author: Kevin Schoon [kevinschoon@gmail.com]
Hash: 3d946499a287b3c9bbc6a68efa584514d2f8204e
Timestamp: Sun, 10 Oct 2021 15:32:10 +0000 (3 years ago)

+4 -3 +/-1 browse
build bin/pomo by default
1diff --git a/Makefile b/Makefile
2index f90b2d6..b4e0ed3 100644
3--- a/Makefile
4+++ b/Makefile
5 @@ -12,9 +12,10 @@ LDFLAGS=\
6 pomo-build \
7 readme
8
9- default:
10- cd cmd/pomo && \
11- go install -ldflags '${LDFLAGS}'
12+ default: bin/pomo
13+
14+ clean:
15+ [[ -f bin/pomo ]] && rm bin/pomo || true
16
17 bin/pomo: test
18 cd cmd/pomo && \