aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJose Diez <jose.manuel.diez@gmail.com>2015-11-10 15:46:59 +0000
committerHarry Jeffery <harry@exec64.co.uk>2015-11-10 16:17:56 +0000
commit185216adcdc62c4cc52ed6104f0bfc5e034a2ffc (patch)
tree50f771119b8ed4512fdc0a110a0d1e596e43fe73 /Makefile
parent507d24d15694cae8e3313b6e02d6bac51f4ea1cb (diff)
downloadimv-185216adcdc62c4cc52ed6104f0bfc5e034a2ffc.tar.gz
Separate viewport logic into imv_viewport
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 33d3724..07d476e 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 image.o texture.o navigator.o
+OBJECTS = main.o image.o texture.o navigator.o viewport.o
$(TARGET): $(OBJECTS)
$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)