Created
January 19, 2015 08:12
-
-
Save moznion/25df0b43041f4851ef38 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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