summaryrefslogtreecommitdiff
path: root/config.mk
blob: 79af98d1a3df55fdf00b449cce6a38317a1ed0e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# customize below to fit your system

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/man

# compiler and linker
CC = cc
AR = ar
RANLIB = ranlib

# debug
#CFLAGS = -fstack-protector-all -O0 -g -std=c99 -Wall -Wextra -pedantic
#LDFLAGS =

# optimized
CFLAGS = -O2 -std=c99
LDFLAGS = -s

# optimized static
#CFLAGS = -static -O2 -std=c99
#LDFLAGS = -static -s

CPPFLAGS = -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_BSD_SOURCE