Skip to content

Commit

Permalink
Split 'clean' make target into 'clean-pdf' and 'clean-html'
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikt-ma committed May 4, 2020
1 parent 2ffc805 commit 7022464
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Expand Up @@ -6,10 +6,17 @@

all: MLS.pdf MLS.html

clean:
.PHONY: clean-pdf
clean-pdf:
rm *.aux MLS.log MLS.toc MLS.pdf

.PHONY: clean-html
clean-html:
rm MLS.xml LaTeXML.cache *.html

.PHONY: clean
clean: clean-pdf clean-html

MLS.pdf: *.tex chapters/*.tex
pdflatex MLS.tex

Expand Down

0 comments on commit 7022464

Please sign in to comment.