From: Miroslav Lichvar Date: Mon, 14 Mar 2016 14:51:53 +0000 (+0100) Subject: makefile: add distclean target to test/unit/Makefile X-Git-Tag: 2.4-pre1~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ca5d279d7116ccd903d5c393926ec5afc17d41c;p=thirdparty%2Fchrony.git makefile: add distclean target to test/unit/Makefile --- diff --git a/Makefile.in b/Makefile.in index b8fde5ed..3adc586c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -73,6 +73,7 @@ distclean : clean -rm -f .DS_Store -rm -f Makefile $(MAKE) -C doc distclean + $(MAKE) -C test/unit distclean clean : -rm -f *.o *.s chronyc chronyd core *~ diff --git a/test/unit/Makefile.in b/test/unit/Makefile.in index 5fd925cc..554663b3 100644 --- a/test/unit/Makefile.in +++ b/test/unit/Makefile.in @@ -33,6 +33,9 @@ clean: rm -f *.o $(TESTS) rm -rf .deps +distclean: clean + rm -f Makefile + .deps: @mkdir .deps