swh:1:snp:d80eec3f654c152adbdd6e641362bcb340d39fe2
Raw File
Tip revision: b2f65cfa8279f88b6f20f443bb541f06377b3b67 authored by Bob Carpenter on 30 August 2012, 22:57:59 UTC
updated web page to version 1.0.0
Tip revision: b2f65cf
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/

MANUAL_FLAGS=
%.pdf: %.tex
	cd $(dir $@); pdflatex $(MANUAL_FLAGS) $(notdir $^); bibtex $(notdir $(basename $@)); pdflatex $(MANUAL_FLAGS) $(notdir $^); pdflatex $(MANUAL_FLAGS) $(notdir $^);

back to top