Initial commit

This commit is contained in:
2025-11-28 12:53:28 +01:00
commit 9a880c23ac
17 changed files with 1891 additions and 0 deletions

19
assets/Makefile Normal file
View File

@ -0,0 +1,19 @@
SVGS = $(wildcard ./*.svg)
TARGET_BMPS = $(SVGS:.svg=.bmp)
SIZE = 45
BACKCOLOR = 080808
.PHONY: all
all: $(TARGET_BMPS)
@echo $(SVGS)
clean:
rm $(TARGET_BMPS)
%.bmp: %.png
@convert $< -background "#$(BACKCOLOR)" -alpha remove -define bmp:subtype=RGB565 $@
%.png: %.svg
inkscape -h $(SIZE) -w $(SIZE) $< -o $@