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
|
|
|
|
ZATHURA_VERSION_MINOR = 1
|
2012-03-09 19:21:15 +01:00
|
|
|
ZATHURA_VERSION_REV = 1
|
2012-03-21 16:23:29 +01:00
|
|
|
# If the API changes, the API version and the ABI version have to be bumped.
|
2012-02-25 15:21:00 +01:00
|
|
|
ZATHURA_API_VERSION = 1
|
2012-03-21 16:23:29 +01:00
|
|
|
# If the ABI breaks for any reason, this has to be bumped.
|
|
|
|
ZATHURA_ABI_VERSION = 1
|
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.
|
|
|
|
GIRARA_MIN_VERSION = 0.1.1
|
|
|
|
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.
|
|
|
|
WITH_SQLITE ?= $(shell (pkg-config --exists sqlite3 && echo 1) || echo 0)
|
2012-03-04 15:56:54 +01:00
|
|
|
|
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)
|
|
|
|
GTK_LIB ?= $(shell pkg-config --libs gtk+-${ZATHURA_GTK_VERSION}.0 gthread-2.0)
|
2009-12-26 14:30:50 +01:00
|
|
|
|
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
|
|
|
|
2011-10-21 23:33:18 +02:00
|
|
|
#set it to an empty value if you don't need to link against ld for dlopen and friends
|
2011-09-29 13:18:09 +02:00
|
|
|
DL_LIB ?= -ldl
|
|
|
|
|
2011-10-10 23:46:50 +02:00
|
|
|
INCS = ${GIRARA_INC} ${GTK_INC}
|
2012-02-25 15:21:00 +01:00
|
|
|
LIBS = ${GIRARA_LIB} ${GTK_LIB} ${DL_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
|
|
|
|
|
|
|
ifeq (,$(findstring -DZATHURA_PLUGINDIR,${CPPFLAGS}))
|
|
|
|
CPPFLAGS += -DZATHURA_PLUGINDIR=\"${PLUGINDIR}\"
|
|
|
|
endif
|
|
|
|
ifeq (,$(findstring -DGETTEXT_PACKAGE,${CPPFLAGS}))
|
|
|
|
CPPFLAGS += -DGETTEXT_PACKAGE=\"${PROJECT}\"
|
|
|
|
endif
|
|
|
|
ifeq (,$(findstring -DLOCALEDIR,${CPPFLAGS}))
|
|
|
|
CPPFLAGS += -DLOCALEDIR=\"${LOCALEDIR}\"
|
|
|
|
endif
|
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
|
|
|
|