aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2015-11-06 14:25:27 +0000
committerHarry Jeffery <harry@exec64.co.uk>2015-11-06 14:25:27 +0000
commit196d10737f547db6948c9a5d7200c8dfb59df624 (patch)
tree1c10506d84f31bef6f4c5a471ebc60874fd10089 /Makefile
parentbcbd16d24d2e51014af94961f41dc44e0be7e1b2 (diff)
downloadimv-196d10737f547db6948c9a5d7200c8dfb59df624.tar.gz
Don't link to unused librarys
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 58f9efc..a1e80b7 100644
--- a/Makefile
+++ b/Makefile
@@ -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)