2009-12-26 14:30:50 +01:00
|
|
|
# See LICENSE file for license and copyright information
|
|
|
|
# zathura make config
|
|
|
|
|
2010-07-30 12:17:48 +02:00
|
|
|
VERSION = 0.0.8.1
|
2009-12-26 14:30:50 +01:00
|
|
|
|
|
|
|
# paths
|
2010-06-06 19:53:14 +02:00
|
|
|
PREFIX ?= /usr
|
|
|
|
MANPREFIX ?= ${PREFIX}/share/man
|
2009-12-26 14:30:50 +01:00
|
|
|
|
|
|
|
# libs
|
2011-09-20 16:47:49 +02:00
|
|
|
|
|
|
|
# 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)
|
2009-12-26 14:30:50 +01:00
|
|
|
|
2011-08-25 00:45:50 +02:00
|
|
|
GIRARA_INC ?= $(shell pkg-config --cflags girara-gtk2)
|
|
|
|
GIRARA_LIB ?= $(shell pkg-config --libs girara-gtk2)
|
2011-07-10 20:04:24 +02:00
|
|
|
|
2011-09-02 20:46:16 +02:00
|
|
|
SQLITE_INC ?= $(shell pkg-config --cflags sqlite3)
|
|
|
|
SQLITE_LIB ?= $(shell pkg-config --libs sqlite3)
|
|
|
|
|
2011-09-29 13:18:09 +02:00
|
|
|
DL_LIB ?= -ldl
|
|
|
|
|
2011-09-02 20:46:16 +02:00
|
|
|
INCS = ${GIRARA_INC} ${GTK_INC} $(SQLITE_INC)
|
2011-09-29 13:18:09 +02:00
|
|
|
LIBS = ${GIRARA_LIB} ${GTK_LIB} $(SQLITE_LIB) $(DL_LIB) -lpthread -lm
|
2009-12-26 14:30:50 +01:00
|
|
|
|
|
|
|
# flags
|
2011-09-21 00:46:03 +02:00
|
|
|
CFLAGS += -std=c99 -pedantic -Wall -Wno-format-zero-length -Wextra $(INCS)
|
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
|
|
|
|
|
|
|
# set to something != 0 if you want verbose build output
|
|
|
|
VERBOSE ?= 0
|