diff --git a/.rbenv-version b/.rbenv-version new file mode 100644 index 0000000..fe0d831 --- /dev/null +++ b/.rbenv-version @@ -0,0 +1 @@ +1.9.3-p125 diff --git a/math-replay/Makefile b/math-replay/Makefile index ab14a34..4457235 100644 --- a/math-replay/Makefile +++ b/math-replay/Makefile @@ -5,9 +5,18 @@ ALL += $(patsubst %.tex,%.pdf,$(shell find . -name '*.tex')) %.html:%.haml haml -Ilib -rhaml/filters-ext $^ $@ + %.pdf:%.tex texi2pdf $^ -o $@ && \ rm -vf $(patsubst %.pdf,%.aux,$(notdir $@)) \ $(patsubst %.pdf,%.log,$(notdir $@)) + all: $(ALL) + + +clean: + rm -vf $(ALL) + + +.PHONY: all clean