Makefile: fix clean target

Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Nicolas Sebrecht 2017-04-21 21:02:54 +02:00
parent 33a7f3c14c
commit 76ca65e0b2
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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