zathura/config.mk
Moritz Lipp 63e1894523 Patch for zathura build system
A patch to zathuras build system to get zathura
included in gentoos portage. Thanks a lot to ssuominen!
2010-03-12 18:23:41 +01:00

25 lines
456 B
Makefile

# See LICENSE file for license and copyright information
# zathura make config
VERSION = 0.0.2
# paths
PREFIX = /usr
MANPREFIX = ${PREFIX}/share/man
# libs
GTK_INC = $(shell pkg-config --cflags gtk+-2.0 poppler-glib)
GTK_LIB = $(shell pkg-config --libs gtk+-2.0 gthread-2.0 poppler-glib)
INCS = -I. -I/usr/include ${GTK_INC}
LIBS = -lc ${GTK_LIB} -lpthread
# flags
CFLAGS += -std=c99 -pedantic -Wall $(INCS)
# debug
DFLAGS = -g
# compiler
CC ?= gcc