zathura/config.mk

25 lines
482 B
Makefile
Raw Normal View History

# See LICENSE file for license and copyright information
# zathura make config
2010-06-21 22:00:28 +02:00
VERSION = 0.0.7
# paths
2010-06-06 19:53:14 +02:00
PREFIX ?= /usr
MANPREFIX ?= ${PREFIX}/share/man
# libs
2009-12-26 16:08:33 +01:00
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 -Wno-format-zero-length $(INCS)
# debug
DFLAGS = -g
# compiler
CC ?= gcc