From 94c5ece71cb2f5dc9756ce3b3f02af9193700d7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Sat, 2 Mar 2013 12:34:21 +0100 Subject: [PATCH] Makefile: make test depend on compile Otherwise, the nif might not be up to date when you run 'make test' --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ac1c38f..e481d62 100644 --- a/Makefile +++ b/Makefile @@ -14,5 +14,5 @@ compile: $(REBAR) clean: $(REBAR) @$(REBAR) clean -test: $(REBAR) +test: $(REBAR) compile @$(REBAR) eunit