streamfest/Makefile

14 lines
248 B
Makefile
Raw Normal View History

2014-10-29 15:47:23 +02:00
.PHONY: default
.SILENT: default
default: $(STREAMS:=.html)
ifndef STREAMS
echo You need to specify a list of streams the STREAMS variable
endif
.PHONY: clean
clean:
rm -f *.html
2014-10-29 15:11:21 +02:00
%.html:
sed "s/{{stream}}/$(@:.html=)/g" < player.template > $@