mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-29 13:16:00 +01:00
make GIRARA/GTK_INC/LIB overwritable
This commit is contained in:
parent
686abbf588
commit
333cfa4df0
1 changed files with 4 additions and 4 deletions
|
@ -8,11 +8,11 @@ PREFIX ?= /usr
|
||||||
MANPREFIX ?= ${PREFIX}/share/man
|
MANPREFIX ?= ${PREFIX}/share/man
|
||||||
|
|
||||||
# libs
|
# libs
|
||||||
GTK_INC = $(shell pkg-config --cflags gtk+-2.0)
|
GTK_INC ?= $(shell pkg-config --cflags gtk+-2.0)
|
||||||
GTK_LIB = $(shell pkg-config --libs gtk+-2.0 gthread-2.0)
|
GTK_LIB ?= $(shell pkg-config --libs gtk+-2.0 gthread-2.0)
|
||||||
|
|
||||||
GIRARA_INC = $(shell pkg-config --cflags girara-gtk2)
|
GIRARA_INC ?= $(shell pkg-config --cflags girara-gtk2)
|
||||||
GIRARA_LIB = $(shell pkg-config --libs girara-gtk2)
|
GIRARA_LIB ?= $(shell pkg-config --libs girara-gtk2)
|
||||||
|
|
||||||
INCS = -I. -I/usr/include ${GIRARA_INC} ${GTK_INC}
|
INCS = -I. -I/usr/include ${GIRARA_INC} ${GTK_INC}
|
||||||
LIBS = -lc ${GIRARA_LIB} ${GTK_LIB} -lpthread -lm -ldl
|
LIBS = -lc ${GIRARA_LIB} ${GTK_LIB} -lpthread -lm -ldl
|
||||||
|
|
Loading…
Reference in a new issue