From 30d1fce59bebe7b28f2448db1a012b26bfb815ac Mon Sep 17 00:00:00 2001 From: tylermurphy534 Date: Thu, 22 Sep 2022 18:35:11 -0400 Subject: add openal-soft and freealut as submodules --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8df8d0a..e13bf85 100644 --- a/Makefile +++ b/Makefile @@ -5,18 +5,19 @@ INCFLAGS += -Iengine INCFLAGS += -Ilib/glfw/include INCFLAGS += -Ilib/glm INCFLAGS += -Ilib/stb -INCFLAGS += -I/usr/include/AL +INCFLAGS += -Ilib/openal-soft/include +INCFLAGS += -Ilib/freealut/include CCFLAGS = -std=c++17 -O2 -g CCFLAGS += $(INCFLAGS) LDFLAGS = -lm -LDFLAGS += $(INCFLAGS) LDFLAGS += -lglfw LDFLAGS += -ldl LDFLAGS += -lopenal LDFLAGS += -lalut LDFLAGS += -lvulkan +LDFLAGS += $(INCFLAGS) SRC = $(shell find src -name "*.cpp") SRC += $(shell find engine -name "*.cpp") -- cgit v1.2.3-freya