Прошло 2 года.

This commit is contained in:
Кобелев Андрей Андреевич
2026-03-10 22:54:23 +03:00
parent c7636ebd6f
commit a111352dc5
313 changed files with 274971 additions and 1409 deletions

View File

@@ -0,0 +1,21 @@
FONT_DIR ?= /usr/share/fonts/TTF
FONTCONVERT ?= ../../scripts/fontconvert.py
IMGCONVERT ?= ../../scripts/imgconvert.py
.PHONY: fonts
fonts: \
main/firasans_20.h \
main/firasans_12.h \
main/img_zebra.h \
main/img_board.h \
main/img_giraffe.h \
main/img_beach.h
main/firasans_%.h: $(FONTCONVERT)
python3 $(FONTCONVERT) --compress FiraSans_$* $* $(FONT_DIR)/FiraSans-Regular.ttf $(FONT_DIR)/Symbola.ttf > $@
main/img_%.h: files/%.jpg
python3 $(IMGCONVERT) -i $< -o $@ -n img_$*
clean:
rm main/*.h