From 55d0ece0a9072ca409bdf6ff2f3b6d0b268e2952 Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Mon, 23 Nov 2020 18:29:58 -0500 Subject: unicode text rendering working --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e10bdc9..0b720c0 100644 --- a/Makefile +++ b/Makefile @@ -4,5 +4,7 @@ LIBS=-lSDL2 -lGL -ldl -lm DEBUG_CFLAGS=$(ALL_CFLAGS) -DDEBUG -O0 -g ted: *.[ch] text.o $(CC) main.c text.o -o $@ $(DEBUG_CFLAGS) $(LIBS) -%.o: %.c - $(CC) $< -c -o $@ $(DEBUG_CFLAGS) +text.o: text.c text.h base.h lib/stb_truetype.h + $(CC) text.c -c -o $@ $(DEBUG_CFLAGS) +clean: + rm -f ted *.o -- cgit v1.2.3