mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 23:53:53 +01:00
b460faf198
The window refreshes itself now when the document changes.
26 lines
483 B
Makefile
26 lines
483 B
Makefile
# See LICENSE file for license and copyright information
|
|
# zathura make config
|
|
|
|
VERSION = 0.0.2
|
|
|
|
# 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 = -L/usr/lib -lc ${GTK_LIB} -lpthread
|
|
|
|
# flags
|
|
CFLAGS = -std=c99 -pedantic -Wall $(INCS)
|
|
LDFLAGS = ${LIBS}
|
|
|
|
# debug
|
|
DFLAGS = -g
|
|
|
|
# compiler
|
|
CC = gcc
|