diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2015-11-06 14:25:27 +0000 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2015-11-06 14:25:27 +0000 |
commit | 196d10737f547db6948c9a5d7200c8dfb59df624 (patch) | |
tree | 1c10506d84f31bef6f4c5a471ebc60874fd10089 /Makefile | |
parent | bcbd16d24d2e51014af94961f41dc44e0be7e1b2 (diff) | |
download | imv-196d10737f547db6948c9a5d7200c8dfb59df624.tar.gz |
Don't link to unused librarys
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ .PHONY: clean CFLAGS = -g -W -Wall -std=c11 `sdl2-config --cflags` -LDFLAGS = `sdl2-config --libs` -lpng -ljpeg -ltiff -lfreeimage +LDFLAGS = `sdl2-config --libs` -lfreeimage TARGET = imv SOURCES = $(wildcard *.c) |