summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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)
-
-