1# farbfeld version
2VERSION = 4
3
4# Customize below to fit your system
5
6# paths
7PREFIX = /usr/local
8MANPREFIX = $(PREFIX)/man
9
10# flags
11CPPFLAGS = -D_DEFAULT_SOURCE
12CFLAGS   += -std=c99 -pedantic -Wall -Wextra -Os -I${LOCALBASE}/include
13LDFLAGS  = -s -L${LOCALBASE}/lib
14PNG-LDLIBS = -lpng
15JPG-LDLIBS = -ljpeg
16
17# compiler and linker
18CC ?= cc
19