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