From 8f34f26cdc7634cb5968755e9a5cf39090ca8279 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sun, 16 Feb 2025 11:56:02 -0500 Subject: microui renderer --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5947638..a075288 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CFLAGS = -ansi -Wall -Wextra -pedantic -Wno-deprecated-declarations +CFLAGS = -std=c99 -Wall -Wextra -pedantic -Wno-deprecated-declarations LDFLAGS = $(shell sdl2-config --libs) # Link OpenGL. @@ -14,7 +14,7 @@ else endif LDFLAGS += $(GLFLAG) -SRC = main.c microui.c +SRC = main.c microui.c renderer.c OBJ = ${SRC:.c=.o} all: volute @@ -28,4 +28,4 @@ volute: ${OBJ} %.o: %.c ${CC} -c ${CFLAGS} $< -${SRC}: microui.h +${SRC}: microui.h renderer.h atlas.inl -- cgit v1.2.3