From: Miroslav Lichvar Date: Wed, 12 Sep 2018 15:13:40 +0000 (+0200) Subject: makefile: remove gcov files and core dumps X-Git-Tag: 3.4~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2b6ef00dc7394cd0ff5e010b87611dd2e789229;p=thirdparty%2Fchrony.git makefile: remove gcov files and core dumps --- diff --git a/Makefile.in b/Makefile.in index e7489686..cdf31e69 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 diff --git a/test/unit/Makefile.in b/test/unit/Makefile.in index 554663b3..bae0cb79 100644 --- a/test/unit/Makefile.in +++ b/test/unit/Makefile.in @@ -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