Created
October 5, 2014 20:45
-
-
Save jez/b248a409d19c9f1c94cd to your computer and use it in GitHub Desktop.
LaTeX Makefile
This file contains 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
# NOTE: Change "written" to the name of your TeX file with no extension | |
TARGET=written | |
all: $(TARGET).pdf | |
## Generalized rule: how to build a .pdf from each .tex | |
LATEXPDFS=$(patsubst %.tex,%.pdf,$(wildcard *.tex)) | |
$(LATEXPDFS): %.pdf: %.tex | |
pdflatex -interaction nonstopmode $(patsubst %.pdf,%.tex,$@) | |
clean: | |
rm *.aux *.log || true | |
veryclean: clean | |
rm $(TARGET).pdf | |
view: $(TARGET).pdf | |
if [ "Darwin" = "$(shell uname)" ]; then open $(TARGET).pdf ; else evince $(TARGET).pdf ; fi | |
submit: $(TARGET).pdf | |
cp $(TARGET).pdf ../ | |
print: $(TARGET).pdf | |
lpr $(TARGET).pdf | |
.PHONY: all clean veryclean view print |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment