diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-04-17 00:04:06 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-05-10 23:43:42 +0100 |
| commit | cb846a4b870c496cb11d4e64479241384ee8dd63 (patch) | |
| tree | 4e9a7b8a1b50f2ea3f7f2647a03422e104a4c533 /cards/Makefile | |
| parent | 3e7b31f099afce27e220ae95e96e759efb68bfd9 (diff) | |
Add some basic test cards.
Diffstat (limited to 'cards/Makefile')
| -rw-r--r-- | cards/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cards/Makefile b/cards/Makefile new file mode 100644 index 000000000..7673de2ea --- /dev/null +++ b/cards/Makefile @@ -0,0 +1,18 @@ +all: sizing_card_flat sizing_card_scope + +sizing_card_flat: sizing_card_flat.png + rm -rf sizing_card_flat + mkdir sizing_card_flat + /usr/bin/dcpomatic2_create --content-ratio 185 $< > $@/metadata.xml + /usr/bin/dcpomatic2_cli $@ + +sizing_card_scope: sizing_card_scope.png + rm -rf sizing_card_scope + mkdir sizing_card_scope + /usr/bin/dcpomatic2_create --content-ratio 239 $< > $@/metadata.xml + /usr/bin/dcpomatic2_cli $@ + +sizing_card_%.png: sizing_card_%.svg + inkscape -z -C -e $@ $< + +clean:; rm -rf sizing_card_flat sizing_card_scope sizing_card_flat.png sizing_card_scope.png |
