Commit
+4 -3 +/-1 browse
1 | diff --git a/Makefile b/Makefile |
2 | index 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 && \ |