# HG changeset patch # User Robert McIntyre # Date 1330724081 21600 # Node ID 5423d5aaa56a8b4db50060abbcae173a62d9dbed # Parent c14f3a4af7fd59634857edf2b2df7f28279e2873 added sample makefile from Eric Schulte that may one day replace these scripts diff -r c14f3a4af7fd -r 5423d5aaa56a eschulte/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eschulte/Makefile Fri Mar 02 15:34:41 2012 -0600 @@ -0,0 +1,35 @@ +EMACS=emacs +BATCH_EMACS=$(EMACS) --batch -Q -l init.el proposal.org + +all: proposal.pdf + +proposal.html: proposal.org + $(BATCH_EMACS) -f org-export-as-html + +proposal.tex: proposal.org proposal.bib init.el + $(BATCH_EMACS) -f org-export-as-latex + +proposal.bib: tasks.org bib-export.el + $(BATCH_EMACS) -l bib-export.el + +proposal.pdf: proposal.tex gantt.pdf + rm -f proposal.aux + if pdflatex proposal.tex