Created
October 3, 2012 03:08
-
-
Save dlundquist/3824724 to your computer and use it in GitHub Desktop.
Makefile for Latex assignments
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
*.aux | |
*.log | |
*.dvi | |
*.ps | |
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
# place more recent assignment first in the list | |
ASSIGNMENTS = hw1.pdf | |
all: $(ASSIGNMENTS) | |
%.dvi: %.tex | |
latex $< | |
%.ps: %.dvi | |
dvips $< | |
%.pdf: %.ps | |
ps2pdf $< | |
.PHONY: clean print test | |
clean: | |
rm -f *.dvi *.pdf *.ps *.aux *.log | |
print: $(ASSIGNMENTS) | |
lpr $< | |
test: $(ASSIGNMENTS) | |
evince $< |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment