From 9eaba52cafcac7c2f3bfc72d7be1f15893196be1 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Mon, 15 Jul 2019 18:08:15 +0000 Subject: [PATCH] Actually fix the Makefile Sorry, couldn't test the last commit because I was on a Windows machine without MSYS2 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a732774b..86e4f5cb 100644 --- a/Makefile +++ b/Makefile @@ -206,9 +206,9 @@ ifneq ($(WINDOWS), 1) endif ifeq ($(RENDERER), Texture) - SOURCES += Backends/Rendering/SDLTexture.cpp + SOURCES += Backends/Rendering/SDLTexture else ifeq ($(RENDERER), Software) - SOURCES += Backends/Rendering/Software.cpp + SOURCES += Backends/Rendering/Software endif OBJECTS = $(addprefix obj/$(FILENAME)/, $(addsuffix .o, $(SOURCES)))