blob: b083388cd69ef5543c72acc094708b77f1193951 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
PREFIX := /usr/local
MANPREFIX := $(PREFIX)/share/man
CC ?= gcc
CFLAGS += -std=c99 -Wall -pedantic
CPPFLAGS += -I/usr/include/freetype2 -D_XOPEN_SOURCE=700
DEPFLAGS := -MMD -MP
LDFLAGS +=
# autoreload backend: inotify/nop
AUTORELOAD := inotify
# enable features requiring giflib (-lgif)
HAVE_GIFLIB := 1
# enable features requiring libexif (-lexif)
HAVE_LIBEXIF := 1
|