Makefile: ALL shouldn't depend on clean

This commit is contained in:
Astro 2016-09-19 23:00:19 +02:00
parent c08dab076f
commit 63bb96e50b
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
TARGETS=$(patsubst dates/%.yaml, dates/%, $(wildcard dates/*.yaml))
ALL: clean ${TARGETS}
ALL: ${TARGETS}
clean:
rm -rf ${TARGETS}