2009-12-26 14:30:50 +01:00
|
|
|
# See LICENSE file for license and copyright information
|
|
|
|
# zathura make config
|
|
|
|
|
2010-02-15 02:36:11 +01:00
|
|
|
VERSION = 0.0.2
|
2009-12-26 14:30:50 +01:00
|
|
|
|
|
|
|
# paths
|
|
|
|
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 poppler-glib)
|
2009-12-26 14:30:50 +01:00
|
|
|
|
|
|
|
INCS = -I. -I/usr/include ${GTK_INC}
|
2009-12-28 20:10:47 +01:00
|
|
|
LIBS = -L/usr/lib -lc ${GTK_LIB} -lpthread
|
2009-12-26 14:30:50 +01:00
|
|
|
|
|
|
|
# flags
|
|
|
|
CFLAGS = -std=c99 -pedantic -Wall $(INCS)
|
|
|
|
LDFLAGS = ${LIBS}
|
|
|
|
|
|
|
|
# debug
|
|
|
|
DFLAGS = -g
|
|
|
|
|
|
|
|
# compiler
|
|
|
|
CC = gcc
|