aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCamil Staps2015-09-13 20:58:02 +0200
committerCamil Staps2015-09-13 20:58:02 +0200
commit76024783ecb431fa7e75590393207afbec03b8df (patch)
tree0e13ca879a2fb7bae87237f23c43e392170033d7 /Makefile
parentTypos; reference to mt 28:19-20 (great commission) (diff)
Don't rm targets when cleaning
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 83fcac9..825a7d8 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ all: $(TARGET)
pdflatex $<
clean:
- rm -f *.aux *.glo *.idx *fdb_latexmk *.fls *.log *.toc *.ist *.acn *.acr *.alg *.bbl *.blg *.dvi *.glg *.gls *.ilg *.ind *.lof *.lot *.maf *.mtc *.mtcl *.out *.syntex.gz $(TARGET)
+ rm -f *.aux *.glo *.idx *fdb_latexmk *.fls *.log *.toc *.ist *.acn *.acr *.alg *.bbl *.blg *.dvi *.glg *.gls *.ilg *.ind *.lof *.lot *.maf *.mtc *.mtcl *.out *.syntex.gz
.PHONY: clean