blob: 8ba827a2f571d1ffc04cae738068818d4f7c223e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# farbfeld version
VERSION = 4
# Customize below to fit your system
# paths
MANPREFIX = $(PREFIX)/share/man
# flags
CPPFLAGS = -D_DEFAULT_SOURCE
CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os
LDFLAGS = -s
PNG-LDLIBS = -lpng
JPG-LDLIBS = -ljpeg
# compiler and linker
CC = cc
|