2009-12-26 14:30:50 +01:00
|
|
|
# See LICENSE file for license and copyright information
|
|
|
|
# zathura make config
|
|
|
|
|
2012-02-25 15:21:00 +01:00
|
|
|
ZATHURA_VERSION_MAJOR = 0
|
2012-06-09 15:32:06 +02:00
|
|
|
ZATHURA_VERSION_MINOR = 2
|
2013-05-12 23:28:20 +02:00
|
|
|
ZATHURA_VERSION_REV = 3
|
2012-03-21 16:23:29 +01:00
|
|
|
# If the API changes, the API version and the ABI version have to be bumped.
|
2012-04-27 22:19:29 +02:00
|
|
|
ZATHURA_API_VERSION = 2
|
2012-03-21 16:23:29 +01:00
|
|
|
# If the ABI breaks for any reason, this has to be bumped.
|
2012-04-27 22:19:29 +02:00
|
|
|
ZATHURA_ABI_VERSION = 2
|
2012-02-25 15:21:00 +01:00
|
|
|
VERSION = ${ZATHURA_VERSION_MAJOR}.${ZATHURA_VERSION_MINOR}.${ZATHURA_VERSION_REV}
|
2009-12-26 14:30:50 +01:00
|
|
|
|
2012-03-16 13:24:45 +01:00
|
|
|
# the GTK+ version to use
|
|
|
|
# note: zathura with GTK+ 3 is broken!
|
2012-02-14 13:53:26 +01:00
|
|
|
ZATHURA_GTK_VERSION ?= 2
|
|
|
|
|
2012-03-16 13:32:09 +01:00
|
|
|
# minimum required zathura version
|
|
|
|
# If you want to disable the check, set GIRARA_VERSION_CHECK to 0.
|
2013-05-12 23:28:20 +02:00
|
|
|
GIRARA_MIN_VERSION = 0.1.6
|
2012-03-16 13:32:09 +01:00
|
|
|
GIRARA_VERSION_CHECK ?= $(shell pkg-config --atleast-version=$(GIRARA_MIN_VERSION) girara-gtk${ZATHURA_GTK_VERSION}; echo $$?)
|
|
|
|
|
2012-03-04 15:56:54 +01:00
|
|
|
# database
|
2012-03-16 13:24:45 +01:00
|
|
|
# To disable support for the sqlite backend set WITH_SQLITE to 0.
|
2012-05-02 15:49:51 +02:00
|
|
|
WITH_SQLITE ?= $(shell (pkg-config --atleast-version=3.5.9 sqlite3 && echo 1) || echo 0)
|
2012-03-04 15:56:54 +01:00
|
|
|
|
2013-02-08 10:58:57 +01:00
|
|
|
# mimetype detection
|
|
|
|
# To disable support for mimetype detction with libmagic set WITH_MAGIC to 0.
|
|
|
|
WITH_MAGIC ?= 1
|
|
|
|
|
2009-12-26 14:30:50 +01:00
|
|
|
# paths
|
2010-06-06 19:53:14 +02:00
|
|
|
PREFIX ?= /usr
|
|
|
|
MANPREFIX ?= ${PREFIX}/share/man
|
2011-09-30 11:17:57 +02:00
|
|
|
DESKTOPPREFIX ?= ${PREFIX}/share/applications
|
2012-03-08 17:10:31 +01:00
|
|
|
LIBDIR ?= ${PREFIX}/lib
|
|
|
|
INCLUDEDIR ?= ${PREFIX}/include
|
2012-03-07 16:15:06 +01:00
|
|
|
|
2012-03-04 18:35:16 +01:00
|
|
|
# plugin directory
|
2012-03-08 17:10:31 +01:00
|
|
|
PLUGINDIR ?= ${LIBDIR}/zathura
|
2012-03-04 18:35:16 +01:00
|
|
|
# locale directory
|
|
|
|
LOCALEDIR ?= ${PREFIX}/share/locale
|
2009-12-26 14:30:50 +01:00
|
|
|
|
2012-03-08 18:23:44 +01:00
|
|
|
# rst2man
|
|
|
|
RSTTOMAN ?= /usr/bin/rst2man
|
|
|
|
|
2009-12-26 14:30:50 +01:00
|
|
|
# libs
|
2012-02-14 13:53:26 +01:00
|
|
|
GTK_INC ?= $(shell pkg-config --cflags gtk+-${ZATHURA_GTK_VERSION}.0)
|
2012-04-24 16:44:31 +02:00
|
|
|
GTK_LIB ?= $(shell pkg-config --libs gtk+-${ZATHURA_GTK_VERSION}.0)
|
2009-12-26 14:30:50 +01:00
|
|
|
|
2012-04-23 00:37:52 +02:00
|
|
|
GTHREAD_INC ?= $(shell pkg-config --cflags gthread-2.0)
|
|
|
|
GTHREAD_LIB ?= $(shell pkg-config --libs gthread-2.0)
|
|
|
|
|
2012-04-27 22:26:49 +02:00
|
|
|
GMODULE_INC ?= $(shell pkg-config --cflags gmodule-no-export-2.0)
|
|
|
|
GMODULE_LIB ?= $(shell pkg-config --libs gmodule-no-export-2.0)
|
|
|
|
|
2012-02-14 13:53:26 +01:00
|
|
|
GIRARA_INC ?= $(shell pkg-config --cflags girara-gtk${ZATHURA_GTK_VERSION})
|
|
|
|
GIRARA_LIB ?= $(shell pkg-config --libs girara-gtk${ZATHURA_GTK_VERSION})
|
2011-07-10 20:04:24 +02:00
|
|
|
|
2012-03-04 15:56:54 +01:00
|
|
|
ifneq (${WITH_SQLITE},0)
|
2011-09-02 20:46:16 +02:00
|
|
|
SQLITE_INC ?= $(shell pkg-config --cflags sqlite3)
|
|
|
|
SQLITE_LIB ?= $(shell pkg-config --libs sqlite3)
|
2012-03-04 15:56:54 +01:00
|
|
|
endif
|
2011-09-02 20:46:16 +02:00
|
|
|
|
2013-02-08 10:58:57 +01:00
|
|
|
ifneq (${WITH_MAGIC},0)
|
|
|
|
MAGIC_INC ?=
|
|
|
|
MAGIC_LIB ?= -lmagic
|
|
|
|
endif
|
|
|
|
|
2012-04-27 22:26:49 +02:00
|
|
|
INCS = ${GIRARA_INC} ${GTK_INC} ${GTHREAD_INC} ${GMODULE_INC}
|
|
|
|
LIBS = ${GIRARA_LIB} ${GTK_LIB} ${GTHREAD_LIB} ${GMODULE_LIB} -lpthread -lm
|
2009-12-26 14:30:50 +01:00
|
|
|
|
|
|
|
# flags
|
2011-11-11 16:14:29 +01:00
|
|
|
CFLAGS += -std=c99 -pedantic -Wall -Wno-format-zero-length -Wextra $(INCS)
|
2012-03-05 09:51:27 +01:00
|
|
|
|
2009-12-26 14:30:50 +01:00
|
|
|
# debug
|
2011-09-29 15:23:13 +02:00
|
|
|
DFLAGS ?= -g
|
2009-12-26 14:30:50 +01:00
|
|
|
|
2011-03-06 01:43:04 +01:00
|
|
|
# ld
|
2011-03-07 15:18:25 +01:00
|
|
|
LDFLAGS += -rdynamic
|
2011-03-06 01:43:04 +01:00
|
|
|
|
2009-12-26 14:30:50 +01:00
|
|
|
# compiler
|
2010-03-12 18:23:41 +01:00
|
|
|
CC ?= gcc
|
2010-06-22 01:14:13 +02:00
|
|
|
|
|
|
|
# strip
|
2011-07-10 20:04:24 +02:00
|
|
|
SFLAGS ?= -s
|
2011-08-31 16:41:07 +02:00
|
|
|
|
2012-03-14 22:24:25 +01:00
|
|
|
# msgfmt
|
|
|
|
MSGFMT ?= msgfmt
|
|
|
|
|
2012-03-07 16:15:06 +01:00
|
|
|
# valgrind
|
|
|
|
VALGRIND = valgrind
|
|
|
|
VALGRIND_ARGUMENTS = --tool=memcheck --leak-check=yes --leak-resolution=high \
|
|
|
|
--show-reachable=yes --log-file=zathura-valgrind.log
|
|
|
|
VALGRIND_SUPPRESSION_FILE = zathura.suppression
|
|
|
|
|
2011-08-31 16:41:07 +02:00
|
|
|
# set to something != 0 if you want verbose build output
|
|
|
|
VERBOSE ?= 0
|
2011-10-10 23:46:50 +02:00
|
|
|
|