mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-11 00:03:49 +01:00
8abe3d96d5
Add missing DESKTOPPREFIX variable Signed-off-by: Pavel Borzenkov <pavel.borzenkov@gmail.com> Signed-off-by: Sebastian Ramacher <s.ramacher@gmx.at>
45 lines
962 B
Makefile
45 lines
962 B
Makefile
# See LICENSE file for license and copyright information
|
|
# zathura make config
|
|
|
|
VERSION = 0.0.8.1
|
|
|
|
# paths
|
|
PREFIX ?= /usr
|
|
MANPREFIX ?= ${PREFIX}/share/man
|
|
DESKTOPPREFIX ?= ${PREFIX}/share/applications
|
|
|
|
# libs
|
|
|
|
# set this to 0 if you don't need to link against dl
|
|
GTK_INC ?= $(shell pkg-config --cflags gtk+-2.0)
|
|
GTK_LIB ?= $(shell pkg-config --libs gtk+-2.0 gthread-2.0)
|
|
|
|
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)
|
|
|
|
DL_LIB ?= -ldl
|
|
|
|
INCS = ${GIRARA_INC} ${GTK_INC} $(SQLITE_INC)
|
|
LIBS = ${GIRARA_LIB} ${GTK_LIB} $(SQLITE_LIB) $(DL_LIB) -lpthread -lm
|
|
|
|
# flags
|
|
CFLAGS += -std=c99 -pedantic -Wall -Wno-format-zero-length -Wextra $(INCS)
|
|
|
|
# debug
|
|
DFLAGS ?= -g
|
|
|
|
# ld
|
|
LDFLAGS += -rdynamic
|
|
|
|
# compiler
|
|
CC ?= gcc
|
|
|
|
# strip
|
|
SFLAGS ?= -s
|
|
|
|
# set to something != 0 if you want verbose build output
|
|
VERBOSE ?= 0
|