diff options
author | Christian Hesse <mail@eworm.de> | 2014-10-21 14:19:34 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2014-10-21 14:19:34 +0200 |
commit | 94842408987bf09ecd6123df4338c2467e099216 (patch) | |
tree | 62a5a5bdb6c34abb882e9a4a848478e246e36e7d /Makefile | |
parent | 14083ae1853aed1e88ba747f166f1cd66a6e74aa (diff) | |
download | nthash-94842408987bf09ecd6123df4338c2467e099216.tar.gz nthash-94842408987bf09ecd6123df4338c2467e099216.tar.zst |
use ISO C11 standard
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |