summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorVlad Glagolev <scm@vaygr.net>2016-12-27 01:20:59 +0100
committerVlad Glagolev <scm@vaygr.net>2016-12-27 01:20:59 +0100
commit22436f747d05e99d17bfc05a9d2892cc2ba579af (patch)
tree42b521f28187987eb4579affcfe6748c3270eaf2 /Makefile
parentff2ce99bf7dc08ce8eae47dd980c7af60ad51197 (diff)
downloadnsxiv-22436f747d05e99d17bfc05a9d2892cc2ba579af.tar.zst
Add build options for optional dependencies
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9caa9ca..b4d4f75 100644
--- a/Makefile
+++ b/Makefile
@@ -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