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
.PHONY: clean all cleanall | |
# Make sure this has all of the right dependencies | |
DEPENDS=tex/*.tex *.sty *.bib *.tex | |
TARGET=aexam | |
all: $(TARGET).pdf | |
%.pdf: %.tex $(DEPENDS) | |
rubber -f --pdf -s $< | |
rubber-info --check $< | |
clean: | |
rubber --clean $(TARGET) | |
cleanall: | |
rubber --clean --pdf $(TARGET) |
Saved for prosterity
No comments:
Post a Comment