WEBP and PNG support

This commit is contained in:
2024-06-19 16:22:00 -07:00
parent ce79511e33
commit 8d8eecdbf8

View File

@ -19,3 +19,12 @@ VPATH = $(IN):$(OUT)
%.svg: %.asy
mkdir -p $(OUT)/svg
asy -f svg $(OPTIONS) $< -o $(OUT)/svg/$*
%.png: %.asy
mkdir -p $(OUT)/png
asy -f png $(OPTIONS) $< -o $(OUT)/png/$*
%.webp: %.asy
mkdir -p $(OUT)/webp
asy -f webp $(OPTIONS) $< -o $(OUT)/webp/$*