Files
balatro-gba-chinese-jocker-…/tests/chinese_text/Makefile
T
wuxu c7ef3c0047 Add Chinese text rendering support
Extend the bitmap font pipeline with the Chinese Joker glyph subset and encode supported UTF-8 text for Tonc TTE. Move the affine map clear of the expanded font, add a compile-time VRAM overlap guard, and cover every custom glyph with host tests.
2026-07-19 11:35:14 +08:00

16 lines
314 B
Makefile

CC := gcc
CFLAGS := -I../../include -I. \
-g -O3 -std=gnu23 -Wall -Werror
SRC := chinese_text_test.c \
../../source/chinese_text.c
OUT := build/chinese_text_test
$(OUT): $(SRC) | build
$(CC) $(CFLAGS) -o $@ $^
build:
mkdir -p build
clean:
rm -f $(OUT)