git ssb

0+

cel / ssb-invitation-cards



Tree: 2e6522433974bd62b0c21172ea0f1ff8c7f8b5ee

Files: 2e6522433974bd62b0c21172ea0f1ff8c7f8b5ee / Makefile

350 bytesRaw
1all: view-cards.pid
2
3view-cards.pid: cards.pdf
4 test -s $@ && kill -HUP $$(cat $@) 2>/dev/null && touch $@ || (mupdf -r 120 $< & echo $$! > $@)
5
6urls:
7 test -s urls || cp urls.example $@
8
9config.ps:
10 test -s config.ps || cp config.example.ps $@
11
12cards.pdf: cards.ps config.ps | urls
13 ./gencards.sh > $@ < urls
14
15clean:
16 rm -f cards.pdf
17
18.PHONY: clean
19

Built with git-ssb-web