build bin/pomo by default

This commit is contained in:
Kevin Schoon 2021-10-10 11:32:10 -04:00
parent a7947a7cb7
commit 3d946499a2
1 changed files with 4 additions and 3 deletions

View File

@ -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 && \