freaku-homepage/Makefile

18 lines
373 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
2024-08-08 13:59:37 -07:00
all: $(PAGES) symlinks
2024-08-12 22:25:39 -07:00
.PHONY: symlinks clean
2024-08-08 13:59:37 -07:00
symlinks:
ln -sf ../../static build/tor/
ln -sf ../../static build/clearnet/
2024-08-03 23:11:50 -07:00
clean:
2024-08-08 13:59:37 -07:00
rm -f $(addprefix build/tor/,$(PAGES))
rm -f $(addprefix build/clearnet/,$(PAGES))
2024-08-03 23:11:50 -07:00
%.html: %.j2.html base.j2.html
2024-08-08 13:59:37 -07:00
j2 -D site tor $< > build/tor/$@
j2 -D site clearnet $< > build/clearnet/$@