.PHONY: all
all: doc/example.svg

.PHONY: FORCE
doc/example.svg: FORCE
	rm "example.cast" "example.svg"; \
	asciinema rec "example.cast" \
		--command "./example.sh" \
		--title "example" \
		--cols=80 \
		--rows=35; \
	svg-term \
		--in  example.cast \
		--out example.svg;