zathura/config.mk

32 lines
574 B
Makefile
Raw Normal View History

# See LICENSE file for license and copyright information
# zathura make config
2011-07-12 20:07:53 +02:00
VERSION = 0.0.8.4
# paths
2010-06-06 19:53:14 +02:00
PREFIX ?= /usr
MANPREFIX ?= ${PREFIX}/share/man
2011-05-27 10:34:42 +02:00
DESKTOPPREFIX ?= ${PREFIX}/share/applications
# 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 -lm
# compiler flags
CFLAGS += -std=c99 -pedantic -Wall $(INCS)
# debug flags
DFLAGS = -g
# linker flags
LDFLAGS ?=
# compiler
CC ?= gcc
2010-06-22 01:14:13 +02:00
# strip
SFLAGS ?= -s