Skip to content

Commit

Permalink
Make Makefile ignore potential errors
Browse files Browse the repository at this point in the history
  • Loading branch information
huxuan committed Aug 10, 2012
1 parent 27a8877 commit 9738501
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
bachelor:
xelatex sample-bachelor.tex && \
bibtex sample-bachelor.aux && \
xelatex sample-bachelor.tex && \
xelatex sample-bachelor.tex
-bibtex sample-bachelor.aux
xelatex sample-bachelor.tex
xelatex sample-bachelor.tex
master:
xelatex sample-master.tex && \
bibtex sample-master.aux && \
xelatex sample-master.tex && \
xelatex sample-master.tex
-bibtex sample-master.aux
xelatex sample-master.tex
xelatex sample-master.tex
clean:
find . -name '*.aux' -print0 | xargs -0 rm -rf
Expand Down

0 comments on commit 9738501

Please sign in to comment.