From 7d05fe99669f8654a2a023b15882cca58f116611 Mon Sep 17 00:00:00 2001 From: Christoffer Hallas Date: Thu, 13 Mar 2014 14:37:14 +0100 Subject: [PATCH] fixed ordering in makefile, make will now run test --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 633e9d5..32b586d 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,8 @@ EXAMPLES = $(foreach EXAMPLE, $(wildcard examples/*.js), $(EXAMPLE)) .PHONY: $(EXAMPLES) -$(EXAMPLES): ; node $@ && echo .PHONY: test test: $(EXAMPLES) + +$(EXAMPLES): ; node $@ && echo