From 8cc0b081ef0188f850814b2af2cb077583eb9f2d Mon Sep 17 00:00:00 2001 From: tylermurphy534 Date: Mon, 19 Sep 2022 21:28:41 -0400 Subject: finish refactor --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 96e7b3a..561c5bf 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,9 @@ -include .env - CC = clang++ INCFLAGS = -Isrc INCFLAGS += -Iengine INCFLAGS += -Ilib/glfw/include INCFLAGS += -Ilib/glm -INCFLAGS += -L${VULKAN_SDK}/lib -lvulkan CCFLAGS = -std=c++17 -O2 -g CCFLAGS += $(INCFLAGS) @@ -15,6 +12,7 @@ LDFLAGS = -lm LDFLAGS += $(INCFLAGS) LDFLAGS += lib/glfw/src/libglfw3.a LDFLAGS += lib/glm/glm/libglm_static.a +LDFLAGS += -lvulkan SRC = $(shell find src -name "*.cpp") SRC += $(shell find engine -name "*.cpp") -- cgit v1.2.3-freya