clean.mk: make clean target

Signed-off-by: John McMaster <JohnDMcMaster@gmail.com>
Signed-off-by: Tim 'mithro' Ansell <mithro@mithis.com>
This commit is contained in:
John McMaster 2017-12-07 10:58:31 -08:00 committed by Tim 'mithro' Ansell
parent 5de010f507
commit 4aaeb4c60e
1 changed files with 5 additions and 0 deletions

5
clean.mk Normal file
View File

@ -0,0 +1,5 @@
clean:
for d in $$(find fuzzers minitests experiments -name Makefile -type f); do \
(cd $$(dirname $$d) && $(MAKE) clean) || true; \
done