aboutsummaryrefslogtreecommitdiffstats
path: root/config.mk
diff options
context:
space:
mode:
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/config.mk b/config.mk
index 5059663..228c0ee 100644
--- a/config.mk
+++ b/config.mk
@@ -1,10 +1,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 addeding -DURANDOM=??? to CPPFLAGS, where ??? is the file
+# this can be changed by adding -DURANDOM=??? to CPPFLAGS, where ??? is the file
# to use instead of /dev/urandom.