Skip to content

Instantly share code, notes, and snippets.

@moznion
Created January 19, 2015 08:12
Show Gist options
  • Save moznion/25df0b43041f4851ef38 to your computer and use it in GitHub Desktop.
Save moznion/25df0b43041f4851ef38 to your computer and use it in GitHub Desktop.
.DEFAULT_GOAL := watch
thesis.dvi: thesis.tex
platex thesis.tex
thesis.pdf: thesis.dvi
dvipdfmx -f texfonts.map thesis.dvi
watch:
./script/watcher --dir ./thesis.tex -- make thesis.pdf
clean:
@rm -rf *.log \
*.dvi \
*.aux \
*.lof \
*.toc \
*.idx \
*.pdf \
*.out \
*.ps \
>/dev/null 2>&1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment