add Makefile and build directory

This commit is contained in:
xenofem 2022-07-27 03:23:26 -04:00
parent c799a4d495
commit 4a0f5de37f
3 changed files with 16 additions and 3 deletions

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
suits := puppets bread wheels blades chairs cards
values := 1 2 3 4 5 6 traveler knight wizard noble
cards := $(foreach suit,$(suits),$(foreach value,$(values),$(value)-$(suit)))
svgdeck: $(foreach card,$(cards),build/$(card).svg)
pngdeck: $(foreach card,$(cards),build/$(card).png)
build/%.svg: deck.asy cards.asy numerals.asy $(foreach suit,$(suits),$(suit).asy)
mkdir -p build
sh -c "buf_size=5000000 asy -globalwrite deck.asy"
build/%.png: build/%.svg
convert -density 512 -background transparent $< $@