9 lines
106 B
Makefile
9 lines
106 B
Makefile
ALL := $(patsubst %.haml,%.html,$(shell find . -name '*.haml'))
|
|
|
|
|
|
%.html:%.haml
|
|
haml $^ $@
|
|
|
|
|
|
all: $(ALL)
|