aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-03-21 13:22:38 +0100
committerCharles <sircharlesaze@gmail.com>2020-03-21 13:22:38 +0100
commitad8ae988ba1928af5063ca1dc7375356e467979b (patch)
tree27a6738ff0172e4ebdaed7174cd7b47cc3ec9d59 /Makefile
parent88f5eb3447073fc6a87786da6a9b6b788f9bde66 (diff)
downloadmario_sokoban-ad8ae988ba1928af5063ca1dc7375356e467979b.tar.gz
mario_sokoban-ad8ae988ba1928af5063ca1dc7375356e467979b.tar.bz2
mario_sokoban-ad8ae988ba1928af5063ca1dc7375356e467979b.zip
Sprites loading and display, player move
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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")