site_fursona_refs/tpl/Makefile

11 lines
242 B
Makefile

HTMLS := $(shell find . -type f | grep -E "\.haml$$" | cut -c 3- | rev | cut -c 6- | rev | sed -e "s/$$/.html/" | tee templates.txt)
htmls: $(HTMLS)
@echo -ne
%.html: %.haml
. ../virtual_env/bin/activate; hamlpy $< $@
%.haml:
@touch $@