]> git.lizzy.rs Git - nothing.git/blob - levels/Makefile
Merge pull request #27 from tsoding/23-read-platforms-from-file
[nothing.git] / levels / Makefile
1 SVGS=$(wildcard ./*.svg)
2 TXTS=$(SVGS:.svg=.txt)
3
4 all: $(TXTS)
5
6 %.txt: %.svg
7         xqilla ../scripts/svg2rects.xqe -i $< -o $@
8
9 .PHONY: clean
10
11 clean:
12         rm -rfv $(TXTS)