From 5e458dff3bcc832b0b28d83bd3ef482174d1dc09 Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Fri, 20 Nov 2020 22:28:38 -0500 Subject: more text rendering --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 42064a0..e10bdc9 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ ALL_CFLAGS=$(CFLAGS) -Wall -Wextra -Wshadow -Wconversion -Wpedantic -pedantic -std=gnu11 \ -Wno-unused-function -Wno-fixed-enum-extension -Wimplicit-fallthrough -LIBS=-lSDL2 -lGL -ldl -DEBUG_CFLAGS=$(ALL_CFLAGS) $(LIBS) -DDEBUG -O0 -g +LIBS=-lSDL2 -lGL -ldl -lm +DEBUG_CFLAGS=$(ALL_CFLAGS) -DDEBUG -O0 -g ted: *.[ch] text.o - $(CC) main.c text.o -o $@ $(DEBUG_CFLAGS) + $(CC) main.c text.o -o $@ $(DEBUG_CFLAGS) $(LIBS) %.o: %.c $(CC) $< -c -o $@ $(DEBUG_CFLAGS) -- cgit v1.2.3