https://github.com/stan-dev/stan
Raw File
Tip revision: 965de49cc0eaba13975fe5d80f9f792709b95ab0 authored by Bob Carpenter on 25 October 2012, 21:27:02 UTC
fixed test to include stream
Tip revision: 965de49
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