From 7567416c17eac0183ac05c9ecde8ee07f32e8fbe Mon Sep 17 00:00:00 2001 From: Harry Jeffery Date: Tue, 10 Nov 2015 11:11:58 +0000 Subject: Use navigator class to manage input files --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2dcbe6a..63a5f05 100644 --- a/Makefile +++ b/Makefile @@ -2,11 +2,11 @@ prefix = /usr -CFLAGS = -g -W -Wall -std=c11 `sdl2-config --cflags` +CFLAGS = -g -W -Wall -std=gnu11 `sdl2-config --cflags` LDFLAGS = `sdl2-config --libs` -lfreeimage TARGET = imv -OBJECTS = main.o texture.o +OBJECTS = main.o texture.o navigator.o $(TARGET): $(OBJECTS) $(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS) -- cgit v1.2.3