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
|
2010-12-23 19:41:07 +01:00
|
|
|
GTK_INC = $(shell pkg-config --cflags gtk+-2.0 poppler-glib ddjvuapi)
|
|
|
|
GTK_LIB = $(shell pkg-config --libs gtk+-2.0 gthread-2.0 poppler-glib ddjvuapi)
|
2009-12-26 14:30:50 +01:00
|
|
|
|
|
|
|
INCS = -I. -I/usr/include ${GTK_INC}
|
2011-03-05 21:00:41 +01:00
|
|
|
LIBS = -lc ${GTK_LIB} -lpthread -lm -lgirara -ldl
|
2009-12-26 14:30:50 +01:00
|
|
|
|
|
|
|
# flags
|
2010-05-14 11:30:35 +02:00
|
|
|
CFLAGS += -std=c99 -pedantic -Wall -Wno-format-zero-length $(INCS)
|
2009-12-26 14:30:50 +01:00
|
|
|
|
|
|
|
# debug
|
|
|
|
DFLAGS = -g
|
|
|
|
|
|
|
|
# compiler
|
2010-03-12 18:23:41 +01:00
|
|
|
CC ?= gcc
|
2010-06-22 01:14:13 +02:00
|
|
|
|
|
|
|
# strip
|
|
|
|
SFLAGS = -s
|