aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-04-20 09:34:17 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-04-20 09:34:17 +1200
commit40be5ad949c9864b11afdaa3738859e2ba6f5bb8 (patch)
tree9f3963d7b4dd20ff9a221bf31df518452d674e0c
parentICO C90 forbids mixed declarations and code (diff)
downloadcrypt-40be5ad949c9864b11afdaa3738859e2ba6f5bb8.tar.gz
crypt-40be5ad949c9864b11afdaa3738859e2ba6f5bb8.zip
Conform with c11
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3be6b7a..05d720b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
.PHONY: all clean install
-CFLAGS = -Wall -Wextra -ansi -pedantic
+CFLAGS = -pedantic -std=c11 -Wall -Wextra
LDFLAGS = -lcrypt
PREFIX := /usr/local