Skip to content

Commit 5d2377c

Browse files
committed
Actually clean BUILDDIR by removing it completely, not just stuff inside it
1 parent 3f60aa4 commit 5d2377c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ help: # This help message
2626

2727
.PHONY: clean
2828
clean: # Clean docs build directory
29-
cd $(DOCS_DIR) && rm -rf $(BUILDDIR)/*
29+
cd $(DOCS_DIR) && rm -rf $(BUILDDIR)/
3030

3131
.PHONY: distclean
3232
distclean: # Clean docs build directory and Python virtual environment
33-
cd $(DOCS_DIR) && rm -rf $(BUILDDIR)/*
33+
cd $(DOCS_DIR) && rm -rf $(BUILDDIR)/
3434
rm -rf ./bin/ ./lib/ ./lib64 ./include ./pyvenv.cfg
3535

3636
bin/python:

0 commit comments

Comments
 (0)