Always rebuild with make

`make` doesn't know how to tell if it needs to recompile or not, but
`cargo` does, so we should always call through into `cargo`.
This commit is contained in:
Kevin Ballard 2017-04-30 13:33:05 -07:00
parent 6b008a6177
commit b494c9c0f0

View File

@ -22,4 +22,4 @@ $(INSTALL):
install: build $(INSTALL)
.PHONY: install
.PHONY: $(BUILD) build-no-git $(INSTALL)