aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2015-11-10 01:13:09 +0000
committerHarry Jeffery <harry@exec64.co.uk>2015-11-10 01:13:09 +0000
commit64251e45e4734b40482e47b44299d77ad9af512f (patch)
tree46f8a795b4d0f3ef8741557cbef82625ae1ce20d /Makefile
parent7c8c33aa199c5fa8b2cdb85ce57bd9c596da78f4 (diff)
downloadimv-64251e45e4734b40482e47b44299d77ad9af512f.tar.gz
Use new imv_texture class
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6456194..2dcbe6a 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ CFLAGS = -g -W -Wall -std=c11 `sdl2-config --cflags`
LDFLAGS = `sdl2-config --libs` -lfreeimage
TARGET = imv
-OBJECTS = main.o
+OBJECTS = main.o texture.o
$(TARGET): $(OBJECTS)
$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)