zathura/config.mk

53 lines
1.2 KiB
Makefile
Raw Normal View History

# See LICENSE file for license and copyright information
# zathura make config
2010-07-30 12:17:48 +02:00
VERSION = 0.0.8.1
# paths
2010-06-06 19:53:14 +02:00
PREFIX ?= /usr
MANPREFIX ?= ${PREFIX}/share/man
DESKTOPPREFIX ?= ${PREFIX}/share/applications
# list of : seperated values
PLUGINDIR ?= ${PREFIX}/lib/zathura
# libs
# set this to 0 if you don't need to link against dl
2011-08-25 00:45:50 +02:00
GTK_INC ?= $(shell pkg-config --cflags gtk+-2.0)
GTK_LIB ?= $(shell pkg-config --libs gtk+-2.0 gthread-2.0)
2011-08-25 00:45:50 +02:00
GIRARA_INC ?= $(shell pkg-config --cflags girara-gtk2)
GIRARA_LIB ?= $(shell pkg-config --libs girara-gtk2)
SQLITE_INC ?= $(shell pkg-config --cflags sqlite3)
SQLITE_LIB ?= $(shell pkg-config --libs sqlite3)
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
DL_LIB ?= -ldl
2011-10-10 23:46:50 +02:00
INCS = ${GIRARA_INC} ${GTK_INC}
LIBS = ${GIRARA_LIB} ${GTK_LIB} $(DL_LIB) -lpthread -lm
# flags
2011-11-11 16:14:29 +01:00
CFLAGS += -std=c99 -pedantic -Wall -Wno-format-zero-length -Wextra $(INCS)
CPPFLAGS += -DZATHURA_PLUGINDIR=\"${PLUGINDIR}\"
# debug
2011-09-29 15:23:13 +02:00
DFLAGS ?= -g
# ld
2011-03-07 15:18:25 +01:00
LDFLAGS += -rdynamic
# compiler
CC ?= gcc
2010-06-22 01:14:13 +02:00
# strip
SFLAGS ?= -s
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
# database
# possible values are sqlite and plain
DATABASE ?= plain