From b494c9c0f077841108c857ac81c496c3601da5c6 Mon Sep 17 00:00:00 2001 From: Kevin Ballard Date: Sun, 30 Apr 2017 13:33:05 -0700 Subject: [PATCH] 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`. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index de0fff3..1992aa0 100644 --- a/Makefile +++ b/Makefile @@ -22,4 +22,4 @@ $(INSTALL): install: build $(INSTALL) -.PHONY: install +.PHONY: $(BUILD) build-no-git $(INSTALL)