Skip to content

Commit

Permalink
docs: fix make clean
Browse files Browse the repository at this point in the history
  • Loading branch information
vschaffn committed Nov 18, 2024
1 parent 167f001 commit c332be6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ help:

clean:
echo "Removing build files..."
if [[ -d "$(BUILDDIR)" ]]; then rm -r "$(BUILDDIR)"; fi
if [[ -d "$(SOURCEDIR)/auto_examples" ]]; then rm -r "$(SOURCEDIR)/auto_examples"; fi
if [[ -d "$(SOURCEDIR)/gen_modules" ]]; then rm -r "$(SOURCEDIR)/gen_modules"; fi
if [ -d "$(BUILDDIR)" ]; then rm -r "$(BUILDDIR)"; fi
if [ -d "$(SOURCEDIR)/auto_examples" ]; then rm -r "$(SOURCEDIR)/auto_examples"; fi
if [ -d "$(SOURCEDIR)/gen_modules" ]; then rm -r "$(SOURCEDIR)/gen_modules"; fi

.PHONY: help Makefile

Expand Down

0 comments on commit c332be6

Please sign in to comment.