aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2014-10-21 14:19:34 +0200
committerGravatar Christian Hesse <mail@eworm.de>2014-10-21 14:19:34 +0200
commit94842408987bf09ecd6123df4338c2467e099216 (patch)
tree62a5a5bdb6c34abb882e9a4a848478e246e36e7d
parent14083ae1853aed1e88ba747f166f1cd66a6e74aa (diff)
downloadnthash-94842408987bf09ecd6123df4338c2467e099216.tar.gz
nthash-94842408987bf09ecd6123df4338c2467e099216.tar.zst
use ISO C11 standard
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d508acb..ab6296d 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ ECHO := echo
GREP := grep
INSTALL := install
RM := rm
-CFLAGS += -O2 -Wall -Werror
+CFLAGS += -std=c11 -O2 -Wall -Werror
# Debian has the libs but no pkg-config file. Fall back to hard coded
# "-lnettle" if pkg-config fails.
CFLAGS += $(shell pkg-config --cflags --libs nettle 2>/dev/null || echo "-lnettle")