WEBP and PNG support
This commit is contained in:
9
makefile
9
makefile
@ -19,3 +19,12 @@ VPATH = $(IN):$(OUT)
|
|||||||
%.svg: %.asy
|
%.svg: %.asy
|
||||||
mkdir -p $(OUT)/svg
|
mkdir -p $(OUT)/svg
|
||||||
asy -f svg $(OPTIONS) $< -o $(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/$*
|
||||||
|
Reference in New Issue
Block a user