From 76ca65e0b2c1d18526b098da508516509b646dd8 Mon Sep 17 00:00:00 2001 From: Nicolas Sebrecht Date: Fri, 21 Apr 2017 21:02:54 +0200 Subject: [PATCH] Makefile: fix clean target Signed-off-by: Nicolas Sebrecht --- Makefile | 2 +- docs/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6f366da..8778c7b 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ clean: -find . -name '.cache*' -exec rm -f {} \; -rm -f manpage.links manpage.refs 2>/dev/null -find . -name auth -exec rm -vf {}/password {}/username \; - @$(MAKE) -C clean + -$(MAKE) -C docs clean .PHONY: docs docs: diff --git a/docs/Makefile b/docs/Makefile index 002658e..60148da 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -48,6 +48,6 @@ clean: $(RM) -f offlineimap.7 $(RM) -f manhtml/* $(RM) -rf html/* - -find ./docs -name '*.html' -exec rm -f {} \; + -find . -name '*.html' -exec rm -f {} \; .PHONY: clean doc