From 63bb96e50b5f6cd6361579cbf754874537d46c3c Mon Sep 17 00:00:00 2001 From: Astro Date: Mon, 19 Sep 2016 23:00:19 +0200 Subject: [PATCH] Makefile: ALL shouldn't depend on clean --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8da5dec..59e56b8 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ TARGETS=$(patsubst dates/%.yaml, dates/%, $(wildcard dates/*.yaml)) -ALL: clean ${TARGETS} +ALL: ${TARGETS} clean: rm -rf ${TARGETS}