From ff5bf11c5f319f9c90de7a59eb4f8f338a74a38f Mon Sep 17 00:00:00 2001 From: kartofen Date: Sat, 28 Oct 2023 00:16:54 +0300 Subject: added vertex buffers --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f4d58ba..939fb4c 100644 --- a/Makefile +++ b/Makefile @@ -4,10 +4,10 @@ GLSLC := glslc ifeq ($(PROD),1) CFLAGS := -O2 # production flags else -CFLAGS := -Wall -Wextra -Wpedantic -g -DDEBUG # debug flags +CFLAGS := -Wall -Wextra -Wpedantic -lprofiler -g -DDEBUG # debug flags endif -CFLAGS += -std=c99 -lm -lvulkan `sdl2-config --cflags --libs` +CFLAGS += -std=c99 -lm -lvulkan `sdl2-config --cflags --libs` /usr/local/lib/libcglm.a SRCD := src OBJD := obj @@ -79,5 +79,3 @@ run: $(NAME) valgrind: all valgrind -s --leak-check=full --show-leak-kinds=all $(RUN_CMD) - - -- cgit v1.2.3