makefile: remove gcov files and core dumps

This commit is contained in:
Miroslav Lichvar 2018-09-12 17:13:40 +02:00
parent 5dc86c236b
commit b2b6ef00dc
2 changed files with 3 additions and 2 deletions

View file

@ -70,7 +70,8 @@ distclean : clean
-rm -f Makefile config.h config.log
clean :
-rm -f *.o *.s chronyc chronyd core *~
-rm -f *.o *.s chronyc chronyd core.* *~
-rm -f *.gcda *.gcno
-rm -rf .deps
-rm -rf *.dSYM

View file

@ -30,7 +30,7 @@ check: $(TESTS)
exit $$ret
clean:
rm -f *.o $(TESTS)
rm -f *.o *.gcda *.gcno core.* $(TESTS)
rm -rf .deps
distclean: clean