zathura/ft/pdf-mupdf/config.mk
Moritz Lipp 3f23dcfb6e Merge branch 'mupdf' into girara
Updated to mupdf 0.8

Conflicts:
	config.mk
	ft/pdf-mupdf/pdf.h
	ft/pdf-poppler/pdf.c
	ft/pdf-poppler/pdf.h
	ft/pdf/pdf.h
2011-03-06 09:43:19 +01:00

22 lines
414 B
Makefile

# See LICENSE file for license and copyright information
# paths
PREFIX ?= /usr
# libs
GTK_INC = $(shell pkg-config --cflags gtk+-2.0)
GTK_LIB = $(shell pkg-config --libs gtk+-2.0)
INCS = -I. -I/usr/include ${GTK_INC}
LIBS = -lc ${GTK_LIB} -lmupdf -ljbig2dec -ljpeg -lopenjpeg
# flags
CFLAGS += -std=c99 -fPIC -pedantic -Wall -Wno-format-zero-length $(INCS)
# debug
DFLAGS = -g
# compiler
CC ?= gcc
LD ?= ld