summaryrefslogtreecommitdiff
path: root/utils/cover/Makefile
blob: 2fddab010b8cfec1417161babe81ff9234e34b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
TARGET_PDF  = cover.pdf

.PHONY: pdf
pdf: $(TARGET_PDF)

$(TARGET_PDF): cover.svg
	inkscape $^ --export-pdf=$@

cover.svg: cover.scm # Cover data too
	chibi-scheme cover.scm > cover.svg

.PHONY: clean
clean:
	rm $(TARGET_PDF) cover.svg