summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2023-10-28 00:16:54 +0300
committerkartofen <mladenovnasko0@gmail.com>2023-10-28 00:16:54 +0300
commitff5bf11c5f319f9c90de7a59eb4f8f338a74a38f (patch)
treee58ef28897986cb32f85d741ab4cc2efdf9622e4 /Makefile
parente9bd321c8bd6bdb6aa7305c6da8b33e8cac462f7 (diff)
added vertex buffers
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
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)
-
-