mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-11 00:23:47 +01:00
31 lines
528 B
Makefile
31 lines
528 B
Makefile
# See LICENSE file for license and copyright information
|
|
# zathura make config
|
|
|
|
VERSION = 0.0.8.1
|
|
|
|
# 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 = -lc ${GTK_LIB} -lpthread -lm
|
|
|
|
# compiler flags
|
|
CFLAGS += -std=c99 -pedantic -Wall $(INCS)
|
|
|
|
# debug flags
|
|
DFLAGS = -g
|
|
|
|
# linker flags
|
|
LDFLAGS ?=
|
|
|
|
# compiler
|
|
CC ?= gcc
|
|
|
|
# strip
|
|
SFLAGS ?= -s
|