diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2015-11-10 11:11:58 +0000 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2015-11-10 11:11:58 +0000 |
commit | 7567416c17eac0183ac05c9ecde8ee07f32e8fbe (patch) | |
tree | 411c2e51a065d4d18faeea731695d645c7563356 /Makefile | |
parent | b134bd7a3c29acddc1953786a74908764650e36b (diff) | |
download | imv-7567416c17eac0183ac05c9ecde8ee07f32e8fbe.tar.gz |
Use navigator class to manage input files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |