aboutsummaryrefslogtreecommitdiffstats
path: root/config.mk
blob: 228c0ee88a50272ef01507a91c87b3cc42de24be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
PREFIX    = /usr
MANPREFIX = $(PREFIX)/share/man

CC = cc

CPPFLAGS  = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700
CFLAGS    = -std=c99 -Wall -O3
LDFLAGS   = -s -lkeccak

# krandom is seeded by /dev/urandom (Linux's non-blocking random number generator),
# this can be changed by adding -DURANDOM=??? to CPPFLAGS, where ??? is the file
# to use instead of /dev/urandom.