zathura/config.mk
Moritz Lipp ec9e572bb1 Build fix for Fedora 13+
Thanks to François Cami
2010-08-14 10:17:30 +02:00

28 lines
509 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
# 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 -lm
# flags
CFLAGS += -std=c99 -pedantic -Wall -Wno-format-zero-length $(INCS)
# debug
DFLAGS = -g
# compiler
CC ?= gcc
# strip
SFLAGS = -s