Add build options for optional dependencies

This commit is contained in:
Vlad Glagolev 2016-12-26 19:20:59 -05:00
parent ff2ce99bf7
commit 22436f747d
1 changed files with 4 additions and 1 deletions

View File

@ -11,12 +11,15 @@ LIBS := -lImlib2 -lX11 -lXft
# optional dependencies:
# giflib: gif animations
ifeq ($(WITH_GIFLIB), 1)
CPPFLAGS += -DHAVE_GIFLIB
LIBS += -lgif
endif
# libexif: jpeg auto-orientation, exif thumbnails
ifeq ($(WITH_LIBEXIF), 1)
CPPFLAGS += -DHAVE_LIBEXIF
LIBS += -lexif
endif
.PHONY: clean install uninstall