aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2015-11-10 14:57:43 +0000
committerHarry Jeffery <harry@exec64.co.uk>2015-11-10 14:57:43 +0000
commit9bad6406b64ce29d90a2b2644b21166594fa6634 (patch)
tree4a2d3b92e8cb404c4a1c4f456f1329c2825bcc1b /Makefile
parentc9a6fd6dc5255191e4b6722c20b8d068a3bd2157 (diff)
downloadimv-9bad6406b64ce29d90a2b2644b21166594fa6634.tar.gz
Use new image class
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 63a5f05..4932368 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ CFLAGS = -g -W -Wall -std=gnu11 `sdl2-config --cflags`
LDFLAGS = `sdl2-config --libs` -lfreeimage
TARGET = imv
-OBJECTS = main.o texture.o navigator.o
+OBJECTS = main.o image.o texture.o navigator.o
$(TARGET): $(OBJECTS)
$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)