WIP: started the code to use a swapchain and aquire swapchain images
[vkrt] / Makefile
index bdbc075..470cf95 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ dbg = -g
 
 CC = gcc
 CFLAGS = -pedantic -Wall $(dbg) $(pkg-config --cflags glfw3)
-LDFLAGS =  -lvulkan $(pkg-config --libs glfw3)
+LDFLAGS =  -lvulkan -lglfw #$(pkg-config --libs glfw3)
 
 $(bin): $(obj)
        $(CC) -o $@ $(obj) $(LDFLAGS)