Skip to content
Snippets Groups Projects
Commit 8a24a8f0 authored by Martine Lenders's avatar Martine Lenders
Browse files

Use rm -rf instead of rmdir

This way make clean runs more... cleanly
parent 01f2cb21
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ all: ...@@ -7,7 +7,7 @@ all:
clean: clean:
@for i in $(DIRS) ; do "$(MAKE)" -C $$i clean ; done ; @for i in $(DIRS) ; do "$(MAKE)" -C $$i clean ; done ;
-@if [ -d $(BINDIR) ] ; \ -@if [ -d $(BINDIR) ] ; \
then rmdir $(BINDIR) ; \ then rm -rf $(BINDIR) ; \
fi fi
doc: doc:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment