box-o-sand/math-replay/Makefile

17 lines
345 B
Makefile
Raw Normal View History

CFLAGS += -g -Wall -Wextra
2012-04-02 11:42:09 +00:00
ALL := $(patsubst %.haml,%.html,$(shell find . -name '*.haml'))
2012-04-02 11:47:11 +00:00
ALL += $(patsubst %.tex,%.pdf,$(shell find . -name '*.tex'))
ALL += temperatures
2012-04-02 11:42:09 +00:00
%.html:%.haml
haml $^ $@
2012-04-02 11:47:11 +00:00
%.pdf:%.tex
2012-04-02 11:53:57 +00:00
texi2pdf $^ -o $@ && \
rm -vf $(patsubst %.pdf,%.aux,$(notdir $@)) \
$(patsubst %.pdf,%.log,$(notdir $@))
2012-04-02 11:42:09 +00:00
all: $(ALL)