https://github.com/stan-dev/stan
Raw File
Tip revision: 1cde932d15a348df17e9dafce17a79299b9d8a2d authored by Jiqiang Guo on 06 March 2013, 21:02:05 UTC
upgrade rstan verion to 1.2.0
Tip revision: 1cde932
manual
.PHONY: manual src/docs/stan-reference/stan-reference.tex
manual: src/docs/stan-reference/stan-reference.pdf
	mkdir -p doc/
	cp src/docs/stan-reference/stan-reference.pdf doc/stan-reference-$(VERSION_STRING).pdf

MANUAL_FLAGS=
%.pdf: %.tex
	cd $(dir $@); pdflatex $(MANUAL_FLAGS) $(notdir $^); bibtex $(notdir $(basename $@)); makeindex -s stan-reference.ist $(notdir $(basename $@)); pdflatex $(MANUAL_FLAGS) $(notdir $^); pdflatex $(MANUAL_FLAGS) $(notdir $^);  pdflatex $(MANUAL_FLAGS) $(notdir $^);

back to top