git ssb

0+

cel / ssb-invitation-cards



Tree: b2d0368816eaed34a39c0101fed0639cdf4146b3

Files: b2d0368816eaed34a39c0101fed0639cdf4146b3 / Makefile

348 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