Actually fix the Makefile

Sorry, couldn't test the last commit because I was on a Windows
machine without MSYS2
This commit is contained in:
Clownacy 2019-07-15 18:08:15 +00:00
parent 8fb3f302a0
commit 9eaba52caf

View file

@ -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)))