Mercurial > ift6266
comparison writeup/Makefile @ 629:75458692efba
make a makefile rule for the aistats2011_cameraready.pdf target. It use new generic rule behind.
author | Frederic Bastien <nouiz@nouiz.org> |
---|---|
date | Thu, 17 Mar 2011 14:34:52 -0400 |
parents | b6dfba0a110c |
children | 9910b921c9a6 |
comparison
equal
deleted
inserted
replaced
628:ca20f94448dc | 629:75458692efba |
---|---|
1 all: nips2010_submission.pdf | 1 all: aistats2011_cameraready.pdf |
2 #all: nips2010_submission.pdf | |
2 | 3 |
3 nips2010_submission.pdf: nips2010_submission.tex images/* | 4 %.pdf: %.tex images/* |
4 pdflatex nips2010_submission.tex | 5 pdflatex $< |
5 bibtex -min-crossrefs=999 nips2010_submission | 6 bibtex -min-crossrefs=999 ${<:.tex=} |
6 pdflatex nips2010_submission.tex | 7 pdflatex $< |
7 pdflatex nips2010_submission.tex | 8 pdflatex $< |
9 pdflatex $< | |
8 | 10 |
11 clean: | |
12 rm -f *.aux *.bbl *.blg *.log |