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