freaku-homepage/Makefile

10 lines
122 B
Makefile
Raw Normal View History

2024-08-03 23:42:38 -07:00
PAGES = index.html rules.html donate.html
2024-08-03 23:11:50 -07:00
all: $(PAGES)
clean:
rm $(PAGES)
%.html: %.j2.html base.j2.html
2024-08-03 22:49:09 -07:00
j2 $< > $@