summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBert Münnich <ber.t@posteo.de>2014-06-09 22:59:49 +0200
committerBert Münnich <ber.t@posteo.de>2014-06-09 22:59:49 +0200
commitd26f39914e813aff492020b3d8463965ca8ca574 (patch)
treeb44f39fc050492a0cb964bd74aac3b2bdce64857 /Makefile
parent0f7b26d33d29b9654ccf3c80a8bd5e57720cfcc1 (diff)
downloadnsxiv-d26f39914e813aff492020b3d8463965ca8ca574.tar.zst
Use thumbnails in EXIF tags; requirement for libexif is back
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 9c7afcd..a8320bb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,15 @@
-VERSION = git-20140531
+VERSION = git-20140609
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
CC = gcc
CFLAGS = -std=c99 -Wall -pedantic -O2
-CPPFLAGS = -I$(PREFIX)/include -D_XOPEN_SOURCE=500 -DHAVE_GIFLIB
+CPPFLAGS = -I$(PREFIX)/include -D_XOPEN_SOURCE=500 -DHAVE_LIBEXIF -DHAVE_GIFLIB
LDFLAGS = -L$(PREFIX)/lib
-LIBS = -lX11 -lImlib2 -lgif
+LIBS = -lX11 -lImlib2 -lexif -lgif
-SRC = commands.c exif.c image.c main.c options.c thumbs.c util.c window.c
+SRC = commands.c image.c main.c options.c thumbs.c util.c window.c
OBJ = $(SRC:.c=.o)
all: sxiv