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