diff options
author | Bert Münnich <ber.t@posteo.de> | 2014-06-09 22:59:49 +0200 |
---|---|---|
committer | Bert Münnich <ber.t@posteo.de> | 2014-06-09 22:59:49 +0200 |
commit | d26f39914e813aff492020b3d8463965ca8ca574 (patch) | |
tree | b44f39fc050492a0cb964bd74aac3b2bdce64857 /Makefile | |
parent | 0f7b26d33d29b9654ccf3c80a8bd5e57720cfcc1 (diff) |
Use thumbnails in EXIF tags; requirement for libexif is back
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |