From a19dacf5089051f8c3455522882e99792de18454 Mon Sep 17 00:00:00 2001 From: Tommy Schaefer Date: Wed, 28 Dec 2016 09:02:21 -0600 Subject: [PATCH] Add phony target for test --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5ebeac1198..25e54a3ae6 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +.PHONY: test + # assignments ASSIGNMENT ?= "" IGNOREDIRS := "^(\.git|bin|docs|lib|exercises)$$" @@ -33,4 +35,3 @@ test: @for assignment in $(ASSIGNMENTS); do \ ASSIGNMENT=$$assignment $(MAKE) -s test-assignment || exit 1;\ done -