Don't link to unused librarys

This commit is contained in:
Harry Jeffery 2015-11-06 14:25:27 +00:00
parent bcbd16d24d
commit 196d10737f

View file

@ -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)