freaku-homepage/Makefile

10 lines
110 B
Makefile

PAGES = index.html rules.html
all: $(PAGES)
clean:
rm $(PAGES)
%.html: %.j2.html base.j2.html
j2 $< > $@