c7ef3c0047
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.
16 lines
314 B
Makefile
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)
|