From c3fd9dfa23969c842991da4cd852330288889463 Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Fri, 20 Nov 2020 16:58:59 -0500 Subject: started text rendering --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ad7b1d1..42064a0 100644 --- a/Makefile +++ b/Makefile @@ -2,5 +2,7 @@ ALL_CFLAGS=$(CFLAGS) -Wall -Wextra -Wshadow -Wconversion -Wpedantic -pedantic -s -Wno-unused-function -Wno-fixed-enum-extension -Wimplicit-fallthrough LIBS=-lSDL2 -lGL -ldl DEBUG_CFLAGS=$(ALL_CFLAGS) $(LIBS) -DDEBUG -O0 -g -ted: *.[ch] - $(CC) main.c -o $@ $(DEBUG_CFLAGS) +ted: *.[ch] text.o + $(CC) main.c text.o -o $@ $(DEBUG_CFLAGS) +%.o: %.c + $(CC) $< -c -o $@ $(DEBUG_CFLAGS) -- cgit v1.2.3