diff options
author | kartofen <mladenovnasko0@gmail.com> | 2023-10-28 00:16:54 +0300 |
---|---|---|
committer | kartofen <mladenovnasko0@gmail.com> | 2023-10-28 00:16:54 +0300 |
commit | ff5bf11c5f319f9c90de7a59eb4f8f338a74a38f (patch) | |
tree | e58ef28897986cb32f85d741ab4cc2efdf9622e4 /Makefile | |
parent | e9bd321c8bd6bdb6aa7305c6da8b33e8cac462f7 (diff) |
added vertex buffers
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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) - - |