From ad8ae988ba1928af5063ca1dc7375356e467979b Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 21 Mar 2020 13:22:38 +0100 Subject: Sprites loading and display, player move --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 97f282a..0f715ee 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ OBJDIR = build CXX = g++ CXXFLAGS = -Wall -Wextra -I$(INCDIR) $(shell sdl2-config --cflags) -std=c++98 -LDFLAGS = $(shell sdl2-config --libs) +LDFLAGS = $(shell sdl2-config --libs) -lSDL2_image SRC = $(shell find $(SRCDIR) -type f -name "*.cpp") INC = $(shell find $(INCDIR) -type f -name "*.h" -o -name "*.hpp") -- cgit