config.mk - farbfeld - suckless image format with conversion tools | |
git clone git://git.suckless.org/farbfeld | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
config.mk (300B) | |
--- | |
1 # farbfeld version | |
2 VERSION = 4 | |
3 | |
4 # Customize below to fit your system | |
5 | |
6 # paths | |
7 PREFIX = /usr/local | |
8 MANPREFIX = $(PREFIX)/share/man | |
9 | |
10 # flags | |
11 CPPFLAGS = -D_DEFAULT_SOURCE | |
12 CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os | |
13 LDFLAGS = -s | |
14 PNG-LDLIBS = -lpng | |
15 JPG-LDLIBS = -ljpeg | |
16 | |
17 # compiler and linker | |
18 CC = cc |