From f9b76d602736755297f605b4622dd7e4f4ef88dd Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sun, 8 Apr 2012 21:22:55 -0400 Subject: [PATCH] trivial bits setting rbenv version and adding a `clean` target for math replay --- .rbenv-version | 1 + math-replay/Makefile | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 .rbenv-version 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