a46006f527
Fixes issue #167. Long after closing this issue (kind of wontfix) we have switched to GNU make and can thus use its features like VPATH.
20 lines
384 B
Makefile
20 lines
384 B
Makefile
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
|
|
|