diff --git a/Makefile b/Makefile index 4878ed8..04362b2 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ help: @echo ' ' @echo 'Änderungswünsche werden ausschließlich via issue und pullrequest ' @echo 'Usage: ' - @echo ' make pdf generate a PDF file ' + @echo ' make pdf generate a PDF file ' @echo ' make spellcheck checks the output for misspelled words ' @echo ' ' @echo ' ' @@ -98,5 +98,12 @@ spellcheck: build-stage do-spellcheck remove-stage pdf: build-stage compile-pdf remove-stage +clean: + # Remove the staging directory + @rm -rf $(STAGINGDIR) + + # And remove the current result + @rm -f $(OUTPUTFILE) + # Special Targets .PHONY: help pdf clean