diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2015-11-10 14:57:43 +0000 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2015-11-10 14:57:43 +0000 |
commit | 9bad6406b64ce29d90a2b2644b21166594fa6634 (patch) | |
tree | 4a2d3b92e8cb404c4a1c4f456f1329c2825bcc1b /Makefile | |
parent | c9a6fd6dc5255191e4b6722c20b8d068a3bd2157 (diff) | |
download | imv-9bad6406b64ce29d90a2b2644b21166594fa6634.tar.gz |
Use new image class
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |